Full GC Occuring every 1 minute

Hi there,
My Weblogic 5.1 (service pack 10) seems to be running a full gc every 1 minute even though I have plenty of memory and there is not much traffic on my web site.
The full gc is causing me ~9 seconds of pause time every minute for the ~300M of memory that I have used up on a maximum of 768M for the JVM.
If you know of a way to disable this feature, please kindly let me know!
Thanks in advance for your help!
Regards,
Wing.

Thanks Simon,
When you say debug mode, do you mean development mode as opposed to production
mode, i.e. -Dweblogic.ProductionModeEnabled=false?
Paul
"Simon Spruzen" <[email protected]> wrote:
>
WLS dgc does call System.gc() every so often. But you do have to have
debug mode
enabled. Some of the ZAC code does too. I don't know why.
simon.
"Paul Hammond" <[email protected]> wrote:
I have the same problem, 2.5 secs FULL GC for every 40 meg, and about
once a minute
or thereabouts seems about right, not right on the second are anything
but about
right. This is a severe problem alright, especially as even with a 1.5
gig heap,
and only 140 meg used, it still insists on doing one when it doesn't
need to!!
I'm on Solaris 2.8, WL 6.1 SP2.
Maybe WL (could BEA engineers confirm?) explicitly calls a garbage collection
every so often? Would this always do a full GC? There is an option (non
standard
or supported) option to Sun's JVM which is -XX:+DisableExplicitGC which
will ignore
explicit calls to do a GC. It might be worth trying this to see if it
then only
does a full GC when it has to.
Regs,
Paul
Regs,
Paul
Dimitri Rakitine <[email protected]> wrote:
If this is that periodic (exactly once a minute), can it be WebLogic
DGC
implementation? I think there is a property which turns it on or off.
Cameron Purdy <[email protected]> wrote:
Figure out who is calling GC ... is it because the memory is used
or
because
someone calls it.
Also increase the "new" heap size to limit the GC pause.
Peace,
Cameron Purdy
Tangosol, Inc.
Clustering Weblogic? You're either using Coherence, or you should
be!
Download a Tangosol Coherence eval today at http://www.tangosol.com/
"Wing Lam" <[email protected]> wrote in message
news:[email protected]...
Hi there,
My Weblogic 5.1 (service pack 10) seems to be running a full gc
every
1
minute even though I have plenty of memory and there is not much
traffic
on
my web site.
The full gc is causing me ~9 seconds of pause time every minute
for
the
~300M of memory that I have used up on a maximum of 768M for the
JVM.
If you know of a way to disable this feature, please kindly letme
know!
Thanks in advance for your help!
Regards,
Wing.--
Dimitri

Similar Messages

  • Full Garabage Collection every minute in oc4j_soa instance

    It looks like a Full GC cycle is run exactly every minute on a IDLE BPEL instance that does not have any instances. This is a basic 10.1.3.1.0 BPEL install with no Out of the box parameters modified / tuned. Is this a known issue / bug with a fix ?
    Also, we have 3 - 5 Asnyc BPEL Processes that involve human workflow. The invocation rate of these workflows is medium (100 instances per hour),but the instances may last long due to human workflow. What would be the recommended settings for these in terms of worker, invoker and dispatcher threads, DB Connections etc? Is there any tuning guide/ spreadsheet available for computation of optimum values ?
    $ jstat -gcutil 7123 60000
    S0 S1 E O P YGC YGCT FGC FGCT GCT
    0.00 62.95 29.18 11.66 99.66 651 13.801 62 62.792 76.593
    18.75 0.00 86.85 11.78 99.67 666 14.103 63 63.845 77.948
    0.00 25.00 71.48 10.95 99.63 681 14.404 64 64.908 79.312
    0.00 41.97 54.68 11.08 99.64 697 14.722 65 65.900 80.622
    0.00 41.97 30.84 11.21 99.65 713 15.043 66 66.853 81.897
    0.00 41.97 7.20 11.33 99.66 729 15.352 67 67.815 83.168
    87.81 0.00 75.06 10.92 99.64 744 15.652 68 68.818 84.469
    65.86 0.00 43.25 11.04 99.64 760 15.984 69 69.798 85.782
    84.94 0.00 82.86 11.23 99.68 776 16.292 70 70.776 87.068
    59.61 0.00 1.74 11.41 99.69 792 16.606 71 71.758 88.364
    0.00 25.00 67.50 10.94 99.65 807 16.897 72 72.776 89.673
    0.00 62.95 23.52 11.06 99.65 823 17.219 73 73.728 90.947
    $ top -p 7123
    7123 vvedula 17 0 1491m 338m 46m S 3.0 16.7 6:45.31 java => 3% CPU usage

    Thanks for the replies. Let me clarify a few things:
    1) We've tried setting -Xms to -Xmx (a long time ago, so maybe it's time to revisit), but doing so caused our app to exhibit other strange behavior due to the fact that no full GCs were ever done until all the allocated memory was exhausted. These full GCs, when finally triggered, ended up taking quite some time due to the fact that there was a lot of compaction (or attempted compaction) going on.
    2) I don't have a problem with doing full GCs (I use the term full GC because both a young and old generation GC happens at every full GC), but I have a problem with the full GCs happening every 2 or 3 seconds and taking up 100% cpu for minutes (because the concurrent phases would run back-to-back for every full GC). Especially when the app has 1/10th the volume of our other app which does a young gc every 20s or so and a full gc every 5 or 6 minutes.
    We've gone ahead and set the initial heap size to -Xms5g for today's run. We initially went without setting -Xms (again, just like our other instance) and we started seeing full GCs almost immediately as the JVM did not want to allocate more heap. We then went with -Xms2g which delayed the full GCs for a few hours until the used heap got close to the allocated heap. Full GCs then kicked in for cycles (15 or 30 mins long) until the JVM increased the heap by a few hundred mb each time.
    As I've stated, I'm struggling with the fact that we have another instance of the application that does not exhibit this behavior and does not have -Xms set at all. And the only thing I know that is different is that during startup, the amount of data we load is quite large (~6-8gb) and so our "min size" is already pretty large before starting to handle additional volume. Hopefully setting -Xms to 5g will replicate the starting point of the original instance.
    I'll respond back with updates.
    Thx,
    Josh
    Edited by: user10720003 on Aug 12, 2009 4:15 AM

  • TNS-12537 - Service_died, Service_register events being logged every minute

    We have an 11.2.0.2 Grid Infrastructure listener that is configured with Oracle Restart. At this time, the listener is listening for connections to a 10.2.0.4 database. The following events are being logged every minute in the listener.log file. In the past, we have occasionally seen similar events logged in the 10.2.0.4 log file, but not every minute.
    21-MAR-2011 14:38:25 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=my.host.here)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=186647040)) * status * 0
    21-MAR-2011 14:38:25 * service_died * LsnrAgt * 12537
    21-MAR-2011 14:38:25 * version * 0
    Dynamic address is already listened on (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=my.host.here)(PORT=1521)))
    21-MAR-2011 14:38:25 * service_register * LsnrAgt * 0
    oerr tns 12537
    12537, 00000, "TNS:connection closed"
    // *Cause: "End of file" condition has been reached; partner has disconnected.
    // *Action: None needed; this is an information message.
    I am wondering if the LsnrAgt is part of the Oracle Restart configuration and is it really just informational when it is occurring every minute?
    Thanks for any help or pointers to docuements that may explain these events that are being logged every minute.
    Edited by: patriciaashe on Mar 21, 2011 3:08 PM
    Edited by: patriciaashe on Mar 21, 2011 3:09 PM

    This error seems to be directly tied to the auto restart configuration of the listener.
    If you remove the listener from the config, the problem goes away.
    ie.
    srvctl remove listener -l listener
    Also, if you want to leave the configuration, you can modify the check interval to alleviate the problems.
    Setting it to 0, prevents the service_died errors. Of course this has the impact of listener not automatically restarting in the event it crashes.
    crsctl modify resource ora.LISTENER.lsnr -attr CHECK_INTERVAL=0

  • Why is HPSLPSVC64.DLL being invoked every minute?

    The log shows this sequence occuring every minute: --- Update device "Network:MY85R8205Y" (HP Officejet Pro L7600 Series) ---
    20111108085658:000714727:0001(1209-0000)(svchost.exe)Update instance strings.
    20111108085658:000718F28:0001(1209-0000)(svchost.exe)Update [Print] function.
    20111108085658:000719775:0001(1209-0000)(svchost.exe)Update [Fax] function.
    20111108085658:000719D65:0001(1209-0000)(svchost.exe)Update [Scan] function.
    20111108085658:00071A912:0001(1209-0000)(svchost.exe)Update [1284.4] function.
    20111108085658:00071BC55:0001(1209-0000)(svchost.exe)Update [Storage] function.
    What causes this and how is this turned off?

    The log shows this sequence occuring every minute: --- Update device "Network:MY85R8205Y" (HP Officejet Pro L7600 Series) ---
    20111108085658:000714727:0001(1209-0000)(svchost.exe)Update instance strings.
    20111108085658:000718F28:0001(1209-0000)(svchost.exe)Update [Print] function.
    20111108085658:000719775:0001(1209-0000)(svchost.exe)Update [Fax] function.
    20111108085658:000719D65:0001(1209-0000)(svchost.exe)Update [Scan] function.
    20111108085658:00071A912:0001(1209-0000)(svchost.exe)Update [1284.4] function.
    20111108085658:00071BC55:0001(1209-0000)(svchost.exe)Update [Storage] function.
    What causes this and how is this turned off?

  • Error when refreshing web intelligence document less then every minute

    Hi all,
    I get the following error, when refreshing document via javascript more often then every minute:
    Server Error in '/Dashboard' Application.
    FatalException occured. The cause was : BusinessObjects.Enterprise.OcaFramework.Oca.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2 at BusinessObjects.Enterprise.OcaFramework.ManagedService.invoke(MethodInfo method, Object[] args, IDictionary context)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: BusinessObjects.Enterprise.OcaFramework.ManagedServiceFatalException: FatalException occured. The cause was : BusinessObjects.Enterprise.OcaFramework.Oca.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2 at BusinessObjects.Enterprise.OcaFramework.ManagedService.invoke(MethodInfo method, Object[] args, IDictionary context)
    Source Error:
    Line 121:               
    Line 122:                    //Session["StorageToken" + strDocId] = doc.StorageToken;
    Line 123:               doc = reportEngine.OpenDocument(intDocID);
    Line 124:               //doc = reportEngine.GetDocumentFromStorageToken(storageToken);
    Line 125:               doc.Refresh();
    Source File: c:\inetpub\wwwroot\dashboard\document.aspx.cs    Line: 123
    Stack Trace:
    [ManagedServiceFatalException: FatalException occured. The cause was : BusinessObjects.Enterprise.OcaFramework.Oca.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
       at BusinessObjects.Enterprise.OcaFramework.ManagedService.invoke(MethodInfo method, Object[] args, IDictionary context)]
       BusinessObjects.ReportEngine.WI.Internal.Server.OCCA._WICDZProxy.initInstance(Byte[] p0, UTF8StringHolder p1)
       BusinessObjects.ReportEngine.WI.Internal.Server.OCCA.OCCAServerStub.InitInstance(String clientInfo, Int32& returnCode)
    [CommunicationException: The Web Intelligence server could not be reached. Contact your Business Objects administrator. (Error: RWI 00236)]
       BusinessObjects.ReportEngine.WI.Internal.Server.OCCA.OCCAServerStub.InitInstance(String clientInfo, Int32& returnCode)
       BusinessObjects.ReportEngine.WI.Internal.Server.ServerCaller.InitInstance(String clientInfo)
       BusinessObjects.ReportEngine.WI.Internal.WIDocumentInstance..ctor(WIReportEngine engine, Int32 documentId)
       BusinessObjects.ReportEngine.WI.Internal.WIReportEngine.OpenDocument(Int32 documentId)
       Dashboard.document.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\dashboard\document.aspx.cs:123
       System.Web.UI.Control.OnLoad(EventArgs e)
       System.Web.UI.Control.LoadRecursive()
       System.Web.UI.Page.ProcessRequestMain()
    Version Information: Microsoft .NET Framework Version:1.1.4322.2407; ASP.NET Version:1.1.4322.2407
    I searched forum and google for this error, but I didn't find anything. Did you heard of this error? How can I fix it?
    My BO Version is BusinessObjects Enterprise XI (without any ServicePacks). Is there a SP which fix this error?
    Thank you for every idea!!!

    Hi,
    Copy File from Client system to server in same folder location .
    Make sure in Edit Query option Editable & Refreshable options are checked .
    Please check the links below  .
    Webi Excel Personal Data Provider Dynamic Data
    How to create a webi report using excel as source
    Excel as datasource in Infoview
    Excel source located in Infoview

  • Explorer.exe is crashing/restarting every minute - faulting module ntdll.dll

    I upgraded to Windows 8 on 11/18 and started having problems where explorer.exe is restarting every minute or so. Here is the error from the event log:
    Faulting application name: explorer.exe, version: 6.2.9200.16433, time stamp: 0x50763312
    Faulting module name: ntdll.dll, version: 6.2.9200.16420, time stamp: 0x505ab405
    Exception code: 0xc000071f
    Fault offset: 0x000000000011808f
    Faulting process id: 0x12c8
    Faulting application start time: 0x01cdc8c32effec36
    Faulting application path: C:\Windows\explorer.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 9220779c-34b6-11e2-be72-e06995f1e71a
    Faulting package full name:
    Faulting package-relative application ID:
    I worked with Microsoft Tech Support for 4 days and ended up doing a clean install of Windows 8.  I had been told by Microsoft that they would escalate me to Tier 2, but they called back and said it was an HP/Hardware issue and I would have to
    work with them.  Chatted with HP, they said it was an OS issue.
    Anyone have any thoughts?
    Dan

    Here is the dump file. Any assistance is greatly appreciated!
    http://sdrv.ms/XyPNrE
    google drive is the cause:
    FAULTING_IP:
    ntdll!RtlReportCriticalFailure+89
    000007f8`47d9a485 eb00 jmp ntdll!RtlReportCriticalFailure+0x8b (000007f8`47d9a487)
    EXCEPTION_RECORD: ffffffffffffffff -- (.exr 0xffffffffffffffff)
    ExceptionAddress: 000007f847d9a485 (ntdll!RtlReportCriticalFailure+0x0000000000000089)
    ExceptionCode: c0000374
    ExceptionFlags: 00000001
    NumberParameters: 1
    Parameter[0]: 000007f847defd60
    PROCESS_NAME: explorer.exe
    ERROR_CODE: (NTSTATUS) 0xc0000374 - Ein Heap wurde besch digt.
    EXCEPTION_CODE: (NTSTATUS) 0xc0000374 - Ein Heap wurde besch digt.
    EXCEPTION_PARAMETER1: 000007f847defd60
    NTGLOBALFLAG: 0
    APPLICATION_VERIFIER_FLAGS: 0
    APP: explorer.exe
    MANAGED_STACK: !dumpstack -EE
    OS Thread Id: 0x6bc (50)
    Current frame:
    Child-SP RetAddr Caller, Callee
    BUGCHECK_STR: APPLICATION_FAULT_WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT
    PRIMARY_PROBLEM_CLASS: WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT
    DEFAULT_BUCKET_ID: WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT
    LAST_CONTROL_TRANSFER: from 000007f847d9f2a0 to 000007f847d9a485
    STACK_TEXT:
    ntdll!NtWaitForSingleObject
    ntdll!RtlReportExceptionEx
    ntdll!RtlReportException
    ntdll!RtlReportCriticalFailure
    ntdll!_C_specific_handler
    ntdll!_GSHandlerCheck_SEH
    ntdll!RtlpExecuteHandlerForException
    ntdll!RtlDispatchException
    ntdll!RtlRaiseException
    ntdll!RtlReportCriticalFailure
    ntdll!RtlpLogHeapFailure
    ntdll! ?? ::FNODOBFM::`string'
    msvcr90!free
    googledrivesync64!DllCanUnloadNow
    shell32!CFSIconOverlayManager::_GetFileOverlayInfo
    shell32!CFSIconOverlayManager::GetFileOverlayInfo
    shell32!CFSFolder::_GetOverlayInfo
    shell32!CIconOverlayTask::InternalResumeRT
    shell32!CRunnableTask::Run
    shell32!CShellTask::TT_Run
    shell32!CShellTaskThread::ThreadProc
    shell32!CShellTaskThread::s_ThreadProc
    SHCore!ExecuteWorkItemThreadProc
    ntdll!RtlpTpWorkCallback
    ntdll!TppWorkerThread
    kernel32!BaseThreadInitThunk
    ntdll!RtlUserThreadStart
    FOLLOWUP_IP:
    googledrivesync64!DllCanUnloadNow+cd8
    000007f8`32602dc8 488d542430 lea rdx,[rsp+30h]
    SYMBOL_STACK_INDEX: 4
    SYMBOL_NAME: googledrivesync64!DllCanUnloadNow+cd8
    FOLLOWUP_NAME: wintriag
    MODULE_NAME: googledrivesync64
    IMAGE_NAME: googledrivesync64.dll
    DEBUG_FLR_IMAGE_TIMESTAMP: 50cfe78c
    STACK_COMMAND: ~50s; .ecxr ; kb
    FAILURE_BUCKET_ID: WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT_c0000374_googledrivesync64.dll!DllCanUnloadNow
    BUCKET_ID: APPLICATION_FAULT_WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT_googledrivesync64!DllCanUnloadNow+cd8
    WATSON_STAGEONE_URL: http://watson.microsoft.com/StageOne/explorer_exe/6_2_9200_16433/50763312/ntdll_dll/6_2_9200_16420/505ab405/c0000374/000ea485.htm?Retriage=1
    Followup: wintriag
    0:050> lmvm googledrivesync64
    start end module name
    000007f8`32600000 000007f8`326bb000 googledrivesync64 (export symbols) googledrivesync64.dll
    Loaded symbol image file: googledrivesync64.dll
    Image path: C:\Program Files (x86)\Google\Drive\googledrivesync64.dll
    Image name: googledrivesync64.dll
    Timestamp: Tue Dec 18 04:48:28 2012 (50CFE78C)
    CheckSum: 000BE686
    ImageSize: 000BB000
    File version: 1.7.4018.3496
    Product version: 1.7.4018.3496
    File flags: 0 (Mask 3F)
    File OS: 4 Unknown Win32
    File type: 2.0 Dll
    File date: 00000000.00000000
    Translations: 0409.04b0
    CompanyName: Google
    ProductName: Google Drive
    ProductVersion: 1.7.4018.3496
    FileVersion: 1.7.4018.3496
    FileDescription: Google Drive shell extension
    LegalCopyright: Google
    disable the sharing overlay icons in the google drive options.
    "A programmer is just a tool which converts caffeine into code"

  • Recurring ping timeout to certain IPs every minute

    Hi all,
    Had BT broadband for a month now and have been getting chronic lag when playing online games and surfing the web. The same issue seems to manifest when pinging certain IP addresses using "ping -t" in command prompt. I consistently get two consecutive timeouts every 55-60 seconds to IPs located USA, France and Sweden.
    Here's an image showing what I mean:
    I experience the same issue with two devices, my PC connected using the ethernet cable to a home hub 3.0 (plugged into master socket), and my phone connected wirelessly to the device. I have also tried a different router, a draytek vigor 2800v and have experienced the same issue.
    One thing to note is that not all IP addresses produce this problem. I've performed a tracert to eu.battle.net which is the first server that I noticed the problem with. If I  go down the list and ping each of these addresses in turn, I find that the issue begins at core2-pos1-0-0.telehouse.ukcore.bt.net [62.6.201.86]. However, I go through them in order of least ping, indicating the route that my network packets are following, the issue actually begins at ldn-bb1-link.telia.net [80.91.252.197]. 
    This result is backed up by someone elses findings in a similar thread.
    Here's the full tracert:
    >tracert eu.battle.net
    Tracing route to eu.battle.net [80.239.186.40]
    over a maximum of 30 hops:
    1 <1 ms <1 ms <1 ms BTHomeHub.home [192.168.1.254]
    2 18 ms 18 ms 18 ms 217.32.147.96
    3 18 ms 19 ms 18 ms 217.32.147.126
    4 27 ms 27 ms 27 ms 213.120.181.146
    5 27 ms 26 ms 26 ms 213.120.179.46
    6 26 ms 26 ms 27 ms 213.120.179.182
    7 30 ms 31 ms 30 ms acc2-10GigE-10-2-0.sf.21cn-ipp.bt.net [109.159.251.202]
    8 39 ms 39 ms 39 ms core2-te0-12-0-6.ealing.ukcore.bt.net [109.159.251.135]
    9 37 ms 37 ms 36 ms core2-pos1-0-0.telehouse.ukcore.bt.net [62.6.201.86]
    10 40 ms 40 ms 39 ms t2as2-tge4-3.uk-lon1.eu.bt.net [166.49.214.145]
    11 37 ms 37 ms 36 ms 166-49-211-34.eu.bt.net [166.49.211.34]
    12 36 ms 36 ms 36 ms ldn-bb1-link.telia.net [80.91.252.197]
    13 131 ms 52 ms 52 ms prs-bb1-link.telia.net [80.91.247.6]
    14 54 ms 53 ms 55 ms prs-b8-link.telia.net [213.155.131.7]
    15 * * * Request timed out.
    16 80-239-170-114.customer.teliacarrier.com [80.239.170.114] reports: Destination net unreachable.
    Trace complete.
    I'd appreciate it a lot of someone could look into this. It's ruining some of my games.

    Not sure the issue is with telia. In fact I don't know what's going on but here are my latest findings.
     I was pinging some more addresses and found that www.google.co.uk was also timing out every 60 seconds, so I got this trace route:
    Tracing route to www.l.google.com [209.85.229.105] over a maximum of 30 hops:
    1 <1 ms <1 ms <1 ms BTHomeHub.home [192.168.1.254]
    2 18 ms 18 ms 18 ms 217.32.147.96
    3 91 ms 18 ms 18 ms 217.32.147.142
    4 27 ms 27 ms 26 ms 213.120.181.146
    5 27 ms 27 ms 27 ms 213.120.179.46
    6 26 ms 27 ms 27 ms 213.120.179.182
    7 * 27 ms 27 ms 109.159.251.235
    8 44 ms 43 ms 39 ms core2-te0-13-0-2.ealing.ukcore.bt.net [109.159.251.139]
    9 35 ms 69 ms 34 ms acc1-10GigE-0-5-0-6.l-far.21cn-ipp.bt.net [109.159.254.108]
    10 38 ms 38 ms 38 ms 195.99.126.107
    11 36 ms 82 ms 50 ms 66.249.94.76
    12 35 ms 37 ms 35 ms 209.85.253.92
    13 45 ms 44 ms 44 ms 66.249.95.173
    14 45 ms 45 ms 45 ms 209.85.252.83
    15 47 ms 40 ms 58 ms 209.85.243.85
    16 * * 46 ms 209.85.229.105
    I pinged the IPs and found lines 10 and 11 were timing out every minute. All the IPs after that were non responsive.
    A minute later, I then redid the traceroute and got a different path, and now pinging google is fine and not producing any time outs at all.
    Tracing route to www.l.google.com [209.85.229.104] over a maximum of 30 hops:
    1 <1 ms <1 ms <1 ms BTHomeHub.home [192.168.1.254]
    2 18 ms 18 ms 18 ms 217.32.147.96
    3 18 ms 18 ms 19 ms 217.32.147.126
    4 24 ms 23 ms 23 ms 213.120.181.110
    5 23 ms 24 ms 23 ms 213.120.179.46
    6 23 ms 24 ms 24 ms 213.120.179.182
    7 24 ms 24 ms 24 ms acc2-10GigE-0-2-0.sf.21cn-ipp.bt.net [109.159.25
    1.194]
    8 36 ms 35 ms 35 ms core1-te0-12-0-6.ilford.ukcore.bt.net [109.159.2
    51.133]
    9 59 ms 31 ms 31 ms peer1-xe11-0-0.telehouse.ukcore.bt.net [109.159.
    254.124]
    10 31 ms 32 ms 31 ms 195.99.126.111
    11 29 ms 29 ms 29 ms 66.249.94.78
    12 31 ms 32 ms 32 ms 209.85.253.94
    13 35 ms 35 ms 35 ms 72.14.232.134
    14 40 ms 35 ms 37 ms 72.14.236.191
    15 40 ms 49 ms 53 ms 209.85.243.85
    16 36 ms 58 ms 35 ms ww-in-f104.1e100.net [209.85.229.104]
    Ok so when www.google.co.uk resolves to 209.85.229.104 it's fine, not ping timeouts at all. But when it resolves to 209.85.229.105 I get the 2 ping timeouts every minute or so as I have mentioned previously. 

  • Event 12317 every minute... File Server

    Hello,
    I am getting the following error every minute on the File Server Cluster node B
    Log Name: Application
    Source: SRMSVC
    Date: 2/20/2015 10:35:13 AM
    Event ID: 12317
    Task Category: None
    Level: Warning
    Keywords: Classic
    User: N/A
    Computer: BOPFSCL1A.ad
    Description:
    File Server Resource Manager failed to enumerate share paths or DFS paths. Mappings from local file paths to share and DFS paths may be incomplete or temporarily unavailable. FSRM will retry the operation at a later time.
    Error-specific details:
    Error: NetShareEnum, 0x80070005, Access is denied.
    I have checked the blog:
    http://blogs.technet.com/b/filecab/archive/2006/09/29/459430.aspx
    Even the Authenticated Users Group was already in the Users Group for th BuiltIn Folder in AD I have restarted the srmsvc and srmreports ...
    But still the error 12317 is poping up...
    Any idea?
    Thanks,
    DOm
    System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager

    Hi Dom,
    How are things going? Please let us know if there is any progress or any new error occurs. 
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Still having the issue and even on another cluster now...
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/a07def79-50aa-4883-96e5-50d4cddd8d9a/cluster-nodes-loosing-communication?forum=winserverClustering
    Any clue?
    Thanks,
    Dom
    System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager

  • All Windows VM - Virtual Disk Service start/stop every minute

    Dear all
    I recently discovered that all my Windows VM's (2003/2008/2008R2) start and stop the virtual disk service:
    System Log File:
    08:37:27 Virtual Disk Service --> Service started
    08:37:27 Service Control Manager --> The Virtual Disk service entered the running state.
    08:37:28 Virtual Disk Service --> Service stopped
    08:37:28 Service Control Manager --> The Virtual Disk service entered the stopped state.
    and i have this entry every minute.
    I removed the DVD Drive from the VM but no change. What could be the reason for this? All my physical servers with the same backup program haven't this behavior.
    Thanks for any hint
    JBAB

    Just as a follow up:
    Dell know that problem and it will be "fixed" in Version 4.7.
    "In releases of the Host Integration Tools previous to V4.6,  Auto Snapshot Manager would query the entire system state every time a refresh was performed.  In Host
    Integration Tools V4.6 Auto Snapshot Manager will query the entire system state only during the initial load.  After that ASM uses event notifications to keep itself up to date refreshing only these changed items.   However event notifications
    aren’t enough,  to pick up some application changes Engineering implemented a polling mechanism.   The Virtual Disk Service events are a side effect of that polling and are normal and expected.
    However while these messages are entirely benign,  Engineering understands these message could be a concern as  they do fill up the event log and drown out important
    events.  Changes have been added to the V4.7 release of Auto Snapshot Manager giving the user the ability to control how often these refreshes occur along with the option of disabling automatic refreshes and using just a manual refresh button in the GUI."

  • How to create Maintainance Plan Which occur every year For particular time duration

    Hello
    I want to create Maintenance Plan which will take full backup Daily Between 1st Oct to 30 July every year.
    Meance plan should execute Only between 1st oct to 30 July every year, It should take backup Daily basis.
    I have seen in sql server we can create Maintainance Plan But If I set Start Date & end Date then after that End Date the plan will never work.
    So Is it possible to setup Maintenance Plan which will occur every year between 1st Oct to 30 July?
    Can you please suggest me some Way for it?
    Thanking you in advance..
    Regards
    Vipul

    Hello
    I have searched for sp_update_schedule store procedure.
    I can not get the roles to make it enable like 
    By default, members of the sysadmin fixed server role can execute this stored procedure. Other users must be granted one of the following SQL Server Agent fixed database roles in the msdb database:
    SQLAgentUserRole
    SQLAgentReaderRole
    SQLAgentOperatorRole
    For details about the permissions of these roles, see SQL Server Agent Fixed Database Roles.
    Only members of sysadmin can modify a schedule owned by another user."
    I am using sa user to login Which is Part of sysadmin But in new query I get error that sp_update_schedule not found.
    I try to add role to sa But Not getting that role.
    Can you please explain me how to do it?

  • Video and sound interupting every minute or so.

    I am so aggrivated with my service. The picture and sound drop out and back on every minute or so. It happens so much it is impossible to watch television comfortably. I have tried using HDMI cale and have tried installing standard cabeling. I am still in my contract and need help. I sent emails to Verizon and got back generic emails. I have talked to friends around the country and they have the same problem. I can't believe that Verizon is so lax about doing something about this. People have the right to expect a better level of service than this especially for what the service costs every month. I would switch to directv but when I asked about that today I was only given the ability to change my programming within the FIOS service.

    I'm having the same problem.  I checked on other entries in the forum and apparently you have to change the feed from 1080i to 720p.  That's not a very good solution though since Verizon advertises "crystal clear HD in full 1080i."  There have been alot of other posts about this but nobody from Verizon has ever responded.  Is there any word on this from Verizon on when they will fix this?  I must say the problem is very frustrating and makes it almost impossible to watch TV without getting angry.  I never had this problem with Comcast. 
    Again, Verizon, is there a solution to this problem that does not involve downgrading your HD feed? 

  • Help! Charge Keeps Resetting to Home Screen every minute or so.

    Hi. My Samsung Charge Keeps Resetting every minute or so to the Home Screen. It shuts off anything I'm doing and goes black. It then starts up at the home screen and says "media scanner running" at the top of screen. What I was doing before problem occurred...I was listening to music player yesterday for several hours until battery went dead. I plugged the phone into my laptop to charge the battery and the problem started.

    I don't really know what to do but your battery probably is not charged very well yet.  The USB port on a PC is NOT a very powerful charger.
    Try this.  Plug your phone into the 1 AMP charger that came with it.  After the battery is charged past the 60% mark leave the charger plugged into your phone and then hold the on/off button (top right outside edge of the phone) until you see Power Off.  Touch power off.  After a minute restart the phone.
    If that does not fix your phone do the same thing at one more or maybe two more times.
    I hope someone else may have a better idea.
    JerryF

  • About a month ago, I began periodically getting the spinning wheel while trimming, adding titles or transitions, etc.  It lasts for about 15 seconds and then goes away.  This seems to happen once every minute or two.  I have more than enough RAM/Power.

    About a month ago, I began periodically getting the spinning wheel while trimming, adding titles or transitions, etc.  It lasts for about 15 seconds and then goes away.  This seems to happen once every minute or two.  I have more than enough RAM/Power, etc.  About every other time I use FCPX it will spontaneously close (typically when editing a title).  None of these things were happening previously.  I have lots of projects that I store on Promise Pegasus drives via Thunderbolt.  I only keep a few projects and the associated events open in FCPX at a time, otherwise I use Event Managaer X to keep track of them.  Can anybody give me any suggestions as to why this is occurring and what I can do to remedy it?  I have the latest version of FCPX as far as I can tell.  This is driving me mad and costing me significant time while editing.  By the way, I am doing just basic editing.  Essentially trimming, cutting and adding some transitions and a few title screens.  Thanks in advance for your help.

    These apperarances of the spinning wheel tend to be related to some io operation that takes too long. Maybe the finder is trying to reach a network server that became unavailable.
    I would try clearing caches and do an overall maintenance with an utility like OnyX.
    Also, trashing preferences does no harm and is often the first troubleshooting measure when FCP X misbehaves.

  • Firefox keeps crashing at random times every minute or so, need help.

    Firefox crashes pretty much every minute I browse the internet. Sometimes even if I just leave it there doing nothing. I've tried safe mode. I've tried disabling hardware accaleration. I've tried creating a new firefox profile. I've tried disabling flashplayer protected mode. Nothing worked so far. Oh and I can enter some websites through firefox for a shortwhile before it crashes but I've noticed that going to imdb.com and mozilla.org causes it to crash instantly don't know if it helps.
    Here are the lat 5 crashes:
    <pre><nowiki>0da6cbf3-643b-4a8b-bcb2-5ec0c983b213 7/20/20139:18 PM
    bp-281e3c83-b2e2-41c9-9484-d15622130720 7/20/20139:12 PM
    bp-459a2a4c-381e-4dc3-ad4a-2566d2130720 7/20/20138:57 PM
    bp-3e06e070-6314-4284-81b8-323a12130720 7/20/20138:57 PM
    bp-bf666492-3cd5-41cd-bea2-3a6752130720 7/20/20138:49 PM</nowiki></pre>

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • TS2771 My ipod touch 4g doesn't work i didnt have charger at first and when my cousins came over i charged it with his it was full and the next minute it was empty. it gave me the warning sign. After tht it shut off and i ot my charger today and it wont t

    My ipod touch 4g doesn't work i didnt have charger at first and when my cousins came over i charged it with his it was full and the next minute it was empty. it gave me the warning sign. After tht it shut off and i ot my charger today and it wont turn on it also gave me a blue light which was kinda like an electric shock. Someone help plz

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

Maybe you are looking for