Getting ditributed  timeout  error

Hi,
when i 'm executing a procedure using dblink i'm getting following error
ERROR at line 1:
ORA-02049: timeout: distributed transaction waiting for lock
ORA-02063: preceding line from PROD
ORA-06512: at "PURGE.PURGEPERSON", line 111
ORA-06512: at line 1
the procedure consists of statements like
INSERT INTO OLD_CARDIO_SET
SELECT /*+ rule */
ishadmin.OLD_CARDIO_SET.*
FROM
ishadmin.CARDIO_WORKOUT@prod,
ishadmin.CARDIO_ACTIVITY@prod ,
ishadmin.CARDIO_ACTIVITY_CHANGED@prod,
ishadmin.OLD_CARDIO_SET@prod
WHERE ishadmin.CARDIO_WORKOUT.workout_nr = ishadmin.CARDIO_ACTIVITY.workout_nr
AND ishadmin.CARDIO_ACTIVITY.activity_nr = ishadmin.CARDIO_ACTIVITY_CHANGED.new_activity_nr
AND ishadmin.CARDIO_ACTIVITY_CHANGED.change_nr = ishadmin.OLD_CARDIO_SET.change_nr
AND ishadmin.CARDIO_WORKOUT.person_nr = pPersonNr;
vCount := SQL%rowcount;
DELETE /*+ rule */ ishadmin.OLD_CARDIO_SET@prod WHERE change_nr IN
SELECT /*+ rule */
ishadmin.CARDIO_ACTIVITY_CHANGED .change_nr
FROM
ishadmin.CARDIO_WORKOUT@prod,
ishadmin.CARDIO_ACTIVITY@prod,
ishadmin.CARDIO_ACTIVITY_CHANGED@prod
WHERE ishadmin.CARDIO_WORKOUT.workout_nr = ishadmin.CARDIO_ACTIVITY.workout_nr
AND ishadmin.CARDIO_ACTIVITY.activity_nr = ishadmin.CARDIO_ACTIVITY_CHANGED.new_activity_nr
AND ishadmin.CARDIO_WORKOUT.person_nr = pPersonNr
can anyone please help me and suggest me how to avoid this error
Thanks

02049, 00000, "timeout: distributed transaction waiting for lock"
// *Cause: exceeded INIT.ORA distributed_lock_timeout seconds waiting for lock.
// *Action: treat as a deadlock                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • I am getting CONNECTION TIMEOUT error in my macbook(10.7.4).plzzz help me

    i am getting CONNECTION TIMEOUT error in my macbook(10.7.4).plzzz help me

    Thank you very much, i guess it will be the remote servers.
    Then i got this critical error on my local server
    Automatic mail message send from usa12 for SID USA on Fri Dec 15 15:00:01 EST 2006
    DONOT REPLY FOR THIS MESSAGE.....
    Please check the follwing files ( will exist if there was an error )
    /u01/app/oracle/admin/usa/bdump/alert_usa.log.121506.1500 ......
    /u01/app/oracle/product/8.1.7/network/log/listener.log.121506.1500 .....
    ORA-00600: internal error code, arguments: [17182], [27793076],
    I know i need to contact oracle , when i went to Metalink ,i needed to run their RDA it is like diagnostic report script and include it before u send to them.
    I needed some permissions from my Senior so i will do it on monday.
    do you have any suggestions????

  • All of a sudden I cannot Forward emails in TB 31.1.2 - I get SMTP timeout error

    And I've tried everything. Shutdown Emsisoft virus prot., turned off firewall, got into Verizon router (btw, I'm going right into the Verizon router-not thru a switch), no port forwarding, even tried to forward an email in Safe mode in Win 8.1 x64. This just happened. I can Write an email OK (i.e., from scratch), but just forwarding, even a small text message won't forward. I even installed an older version of TB. HELP! HELP!
    I either get the SMTP timeout error or I get "check your email and messaging settings." My wife has the exact same setup in TB 31.1.2 but she uses Win 7 x86. -gg

    This has been reported as [https://bugzilla.mozilla.org/show_bug.cgi?id=1060901 Bug #1060901]. If you have an account on Bugzilla, please consider voting for that issue.
    Several other people have sent in the same support request as you, noting this happened after they upgraded to version 31.1.
    The exact error message is: XXXX is not a valid e-mail address because it is not of the form user@host. You must correct it before sending the e-mail.
    '''This happens in Thunderbird 31.1.0 when your mailing list description includes several words separated by spaces.'''
    Although not ideal, these workarounds should let you use your mailing lists until a proper fix is implemented:
    * While composing an email open the address book and select the list you are trying to send to, highlight all the names in the list and drag them to the To: box. This uses your existing data without modifying it.
    * Replacing the blanks " " between the words in such lists' descriptions with an underscore "_". This requires modifying your mailing list(s) description(s).
    '''About automatic updates'''
    Automatic updates are the default in Windows.
    You can [https://support.mozilla.org/en-US/kb/configuration-options-updates?esab=a&s=automatic+updates&r=1&as=s customize such behavior], however, it's under '''Tools > Options > Advanced > Update'''.
    My suggestion would be to set it to '''Check for updates, but let me choose wether to install them.''', specially if you depend on email for critical / important business or personal matters.

  • Why is my startup script getting a timeout error in FrameMaker?

    Using FM 11
    ExtendScript
    Windows 7
    I'm running an ExtendScript from the FM Startup directory, by starting FM from a batch file. The Extendscript opens multiple book files (one at a time) and does a save as pdf for each one. FrameMaker terminates the script with a timeout error at random points in the script after only one or two saves. The Extendscript runs fine when I run it from the FM Scripting window. It only times out when I run it as a startup script. Is there some workaround for this? Sadly, I find no documentation about this.

    Thanks, Rick. Here is the body of the Extendscript that is in the FM Startup directory. The batch file starts FM and then this script gets kicked off.
    main();
    function main() {
        log("Starting the script.");
        var controlFile = File("G:\\fmToPdf\\fmToPdf.control");
        var controlContent = null;
        if(controlFile.exists === true) {
            // Open the file.
            controlFile.open("r"); // r means read only.
            // Read the file contents into a variable.
            controlContent = controlFile.read();
            // Close the file.
            controlFile.close();
        var bookRegEx = /^book="(.*)"/;
        var targetRegEx = /^target="(.*)"/;
        var pathRegEx = /([^\\]+)$/;
        var lines = controlContent.split("\n");
        for (i = 0; i < lines.length; i++) {
            var line = lines[i];
            if (bookRegEx.test(line) === true) {
                var result = line.match(bookRegEx);
                var inBook = result[1];
                var pathComponents = pathRegEx.exec(inBook);
                var fileName = pathComponents[1].replace("book", "pdf");
                for (i = i + 1; i < lines.length; i++) {
                    line = lines[i];
                    if (targetRegEx.test(line)===true) {
                        result = line.match(targetRegEx);
                        var outBook = result[1] + fileName;
                        log("Starting to generate: " + outBook);
                        fileId = openBook(inBook);
                        saveBook(fileId,outBook);
                        closeBook(fileId);
                        log("Finished with: " + outBook);
                    } else {
                        break;
        // close FrameMaker
        Constants.FF_CLOSE_MODIFIED = 1;
        app.Close (Constants.FF_CLOSE_MODIFIED);
        log("We're done.");
        return;   
    function openBook(filename)
        var openProp = GetOpenDefaultParams();
        var retParm = new PropVals();
        var BookOpen=Open(filename,openProp,retParm);
        return BookOpen
    // save as pdf
    function saveBook(file, pdfName)
        var saveProp = GetSaveDefaultParams();
        var i = GetPropIndex(saveProp, Constants.FS_FileType);
        saveProp[i].propVal.ival = Constants.FV_SaveFmtPdf;
        //i = GetPropIndex (saveProp, Constants.FS_DontNotifyAPIClients)
        //saveProp[i].propVal.ival = true;
        var retParmspdf = new PropVals();
        // pdf settings
        file.PDFBookmark = true;
        file.PDFBookmarksOpenLevel = Constants.FV_PDFBookmarksOpenDefaultLevel;
        file.PDFConvertCMYKtoRGB = true;
        file.PDFDistillerAbsent = 0;
        file.PDFJobOption = "High Quality Print";
        file.PDFSeparateFiles = false;
        file.DocIsViewOnly = 1;
        file.Save(pdfName, saveProp, retParmspdf);
        return
    // close file
    function closeBook(filename)
        filename.Close (Constants.FF_CLOSE_MODIFIED);
    function log(message, reset)
        var logfile = File("G:\\fmToPdf\\fmToPdf.log");
        var openMode = (reset === undefined) ? "a" : "w";
        logfile.open(openMode);
        logfile.writeln(getTimeStamp() + " " + message);
        logfile.close();
    function getTimeStamp(){
        var d = new Date();
        var timestamp = d.getFullYear() + "." +
                        zeroFill ((d.getMonth() + 1), 2) + "." +
                        zeroFill (d.getDate(), 2) + " " +
                        zeroFill (d.getHours(), 2) + ":" +
                        zeroFill (d.getMinutes(), 2) + ":" +
                        zeroFill (d.getSeconds(), 2);
        return timestamp;
    function zeroFill( number, width )
      width -= number.toString().length;
      if ( width > 0 )
        return new Array( width + (/\./.test( number ) ? 2 : 1) ).join( '0' ) + number;
      return number + ""; // always return a string

  • Getting PROBE TIMEOUT Error....please help me out...It is urgent

    Hello,
    I'm running a stored procedure in oracle 10G that select data from one table and inserts the selected data into another table. The procedure populates for a short while and then I get the following messages:
    1. probe: timeout Occurred
    2. probe: Exception raised in the DBMS_DEBUG package
    Why is this happening and what should I do to resolve the above issue?
    Please help me out....This is really urgent...
    Thanks a lot in advance....
    Regards,
    Suranjita

    Please check Database alert log to see if any error is raised ?

  • Quicktime broadcaster getting a timeout error.

    Greetings,
    I have setup quicktime broadcaster and feel that I have everything running properly however when I try to connect to my broadcast via the internet I get an open quicktime window showing "waiting for media" with a count up to 8 then back to 0 before it shows "Timed out".
    I have tried using TCP and UDP but the condition persists.
    I opened up ports 554 and 7070 neither of which is blocked.
    Port mapping directs those ports to the server via airport extreme.
    I get no error messages on the server
    If I try to connect by using rtsp://mywebsite.com/link.sdp I get "waiting for media" with a the timeout message in the white quicktime window with the blue quicktime logo.
    If I try to connect by via rtsp://mywebsite.com:80, a black quicktime window opens and it says disconnected.
    Any help would be appreciated.
    Thanks

    Hello Lynn,
    Thanks for your help
    With the P2-4x-4k40 camera file, I get a warning that the camera file does not support the IMAQ device I have selected (see attached pics)
    If I click on yes to add the interface, I get an error saying there was a problem and end up with an empty camera file
    I've found I can load the Dalsa P2-2x-2k40 camera file and it 'works' if I turn down the width to 1024, in that it doesn't time out.  I do get a completely black image though.
    According to the specsheet this camera has four taps but there's only two set up in the camera file and it doesn't seem to be possible to change it.
    Brett
    Senior Software Development Engineer
    Certified LabVIEW Architect and LabVIEW Champion
    Attachments:
    error.png ‏6 KB
    error2.png ‏6 KB

  • I get a timeout error when installing flashplayer

    I use:
    HP Pavillion ze4500
    2Ghz Athlon Processor
    1GB Ram
    Windows XP service pack 3
    IE8
    Opera 12.15
    This morning, 2 things happened when I went to Youtube using IE8: I got a message saying IE8 was no longer supported on Youtube & that I needed the latest version of flashplayer installed (I've got a screenshot of that!). When I tried to get the lastest version, it wouldn't complete installation, the installer indicated "download timeout" (I've got screenshot!). I tried using one of the other download options offered on this site's help section and verified that I got the latest version installed (I have screenshot!). However, Youtube still gives the same message about needing flashplayer.
    Next, I tried using Opera. I got no message saying Opera wasn't supported and no message saying I needed flash player, but video was choppy when played. I tried downloading flashplayer using Opera, but still got a "download timeout".

    Download and run the offline installer(s) from http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_header

  • On financial site which worked perfectly in IE for many years, I get immediate timeout error after entering my ID and password. Does not happen every time and multiple retries do not work.

    I have used the PrimeVest web site to keep track of my IRA for several years now. For most of that time I have used Internet Explorer and have had no trouble. I have a link to that site pasted onto an Excel spread sheet and I click on that link daily to get my present balance. I have been doing it this way for years and have had no trouble while using Internet Explorer.
    I recently installed the Firefox browser on my new laptop and have switched to using it as my default browser. When I click on that link now and enter my account number and password, sometimes it works OK in Firefox and sometimes it gives me a message saying "Your session has timed out. Please Log In Again." I have tried multiple times to re-enter the account number and password but always get the same message. Closing Firefox and reopening it produces the same result. I have even tried shutting the computer completely down and restarting it, but I got the same result. I can not find any pattern or reason to the days when I can use Firefox and the ones when I can not. The only way I have been able to log on to this site on those days is to past the link into Internet Explorer.
    I do the same thing with several other financial sites and have not had any trouble with them and Firefox.

    Thanks for the response.
    I attempted to remove cookies, but I can not identify any of the cookies on the list with the PrimeVest web site. No PrimeVest, no PVs, nothing that looks like it came from them.
    I have also reported the problem to PrimeVest and their tech did answer. He suggested erasing the browsing history (temporary internet files), which I did with no effect. He also had me check for the correct starting page address, which was OK. He stated that they are aware of a problem and it is on their list. No indication of how far down that list though. His only cure was to use IE for now, which I was already doing. Perhaps he can tell me which cookies to remove.

  • Cannot convert pdf file to Word using Adobe ExportPDF online...I get a timeout error after a wait of about 15 minutes

    Oh...BTW...I am using Windows 7 with Chrome browser and I disabled text recognition.  The file is 3.7 MB.  It says it failed because it is taking too long to process however the Adobe export PDF notes that it can convert unlimited files to Word or Excel files.  Anything else I can try?  I exported it to Adobe.com and tried toconvert it there but it looks like the same process...and with the same result.

    Hi there,
    It sounds like there may be an issue with the quality of the PDF. Not all PDFs are created equal, and especially those created from scanned documents can be problematic if the scan quality isn't the best. Is there a dark background on the PDF, or stray marks or smudges?
    You can try converting with OCR disabled at outlined in this document: How to disable Optical Character Recognition (O... | Adobe Community. But, while that's a good test to find out where the problem lies, you'll end up with a Word document that isn't editable, so it's not an optimal solution.
    Please let us know how it goes.
    Best,
    Sara

  • When connecting to wifi, I get a "Connection timeout" error message.

    I'm trying to connect to a WEP password wifi signal. I have the password, but when connecting, I'm getting a connection timeout error message. Please help?

    I'm having the exact same problem. Yesterday it was fine, but today, I get connection timeout error message. Help?

  • Frame timeout error using Configure Trigger3.vi

    Hi all,
    I'm triggering the frame capture of an .avi with an RTSI connection.  However, I keep getting a frame timeout error when I use the IMAQ Configure Trigger3.vi.  I don't get any timeout errors when I just use the IMAQ Generate Pulse3.vi but I am trying to sync the frame capture to an optical switch.  If I just use IMAQ Generate Pulse3.vi, I get a .avi but the frames are completely out of sync with the switch, but if I use both IMAQ Generate Pulse3.vi  and Configure Trigger3.vi I get nicely separated images but it takes an age and ends up in a timeout error.
    I want to capture e.g. 500 frames, over the course of 2 s - so I've set my frame timeout to be 2000.   At my current acquisition rate (31680 Hz per line (1024 pixels)) 500 frames corresponds to a total of 1.578 s (images are 100 pxls in height).  This is much less than the total scanning time.  Where am I going wrong?
    Thanks in advance for your help.
    Miika
    Attachments:
    screen.png ‏32 KB

    Hey Miika
    What are the hardware you are using. These vi's only work with specific hardware and this may be why they are not functioning correctly. For example the Configure trigger3 vi only works with the following PCIe-1427, PCIe-1429, PCe-1430, PCIe-1433.
    Matthew Trott
    Applications Engineer
    National Instruments UK
    www.ni.com/ask

  • IRQ timeout error while executing the custom personality fpga in veristand

    Hi,
    I have gone through the below link and created a custom fpga code to write analog output and digital output through NI 9269 and NI 9472 card respectively.
    NI Veristand add on - fpga configuration editor.
    https://decibel.ni.com/content/docs/DOC-35499
    i was able to import the .fpgaconfig file in veristand system definition window.
    When i execute the code, i am getting IRQ timeout error. 
    Could any one help me how do i debug this error?
    i am interested to see how the veristand host code is executing it.
     

    Hi,
    Have you tried to simplify the FPGA code? If the issue is related to the VCE, you should post there :
    - https://decibel.ni.com/content/message/67188#67188
    The developers of this tool will answer you.
    Posting the error message or the FPGA code will also help us
    Regards,
    --Eric

  • I keep getting time out error messages when trying to install flash player

    I've put a new install of Win 7 64 bit pro onto a new hdd.  All other s/w has worked fine and not given me any issues except for adobe flash player.  If I just install FP 11 it installs ok.  Issue happens when I try to install the "other" version for Steam.  The install screen stops at 11%, shoots up to 47%, then I get a timeout error message.  If I uninstall and install the Steam version 1st it works then the regular version gets the same timeout error.  I have folllowed all advice from previous threads on this topic such as disabling firewall (I use Panda), a clean adobe install using the flash player uninstall program and removing reader as well then going through the registry and removing all mention of adobe, etc, etc.
    I found a partial way around this.  I installed the Steam version of flash player, then found a website that I could download flash player 10 executable from.  I was able to run that and get both versions of flash player going on my system.  Then the flash player went and found the update to version 11.  I've just tried to install that and I end up with the exact same error messages all over again.
    Is there website that I can download the executable file for flash player 11 from or a link to it on the adobe website?

    I am not sure what you mean by "Flash Player for steam"; the only Flash Player installers I know is the ActiveX (for Internet Explorer) and the plugin (for other browsers); you can find both at http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header
    [topic moved to Flash Player forum]

  • CAN Connection timeout error

    I am currently trying to connect to a third party ECU via the ECU toolkit. I am running V8.2 of labview and V2.1 of the toolkit with a series 2 hi-speed PCI NI-CAN card. When I try to connect to the ECU I get a timeout error "-301096: Timeout ocurred while waiting for response from slave device".
    When the A2L file is initially loaded, the individual characteristic and measurement tables load without a problem but the CAN settings do not load. As a result, I use the MC set property vi to manually set CRO id, DTO id, baud rate, byte order and command byte order (after using the hex string to number conversion vi). I also manually set the seedkey dll's but I don't think that the program is getting that far since I have also tried putting in non-existant seedkey dll's and this has no effect.
    I have tried increasing the timeout by factors of 10 and 100 by using the "Set Prop Timing factor" Vi as this is given as a solution to problems with the series 1 boards but this does not help.
    I am using extended (29 bit) identifiers and in one of the supplied examples, there is a multiplication by 20 million and I have also tried this (it changes the CRO id from 0CCCCCCC to 2CCCCCCC for example).
    I have tried using an XCP type connection but I get the same error.
    I have checked the physical state of the CAN bus by looking at the CAN0 channel in MAX and the bus monitor reports no errors and seems to have 3 distinct messages that keep repeating. When in 'listen only mode', the number of repeated messages returns to 1.
    I have included here an excerpt from the A2L file I am using and I have been manually setting up the ECU properties as follows:
    connection type CCP:CAN0
    baud 250000
    CRO id: 0CCCCCCC
    DTO id: 0DDDDDDD
    Station address: 100
    Byte order/cmd byte order: 1
    Is there a way to tell if the Exchange_id function in the CCP protocol is being called? It seems to me that it must be falling over somewhere in here as this is needed in order to compute a correct seedkey for any unlocking of parameters. I would be grateful of any suggestions to help get this up and running.
    Note that I have changed the proprietary A2L information.
    Dan
    Attachments:
    exampleCAN1.txt ‏1 KB

    Hi Graham,
    I tried starting off from a completely blank A2L and added connection parameters one at a time until I was sure each line was being read correctly by the toolkit parser. This seemed to work fine but the connection would open, try to unlock ECU resources and then return an error that the resources were unavailable and I should try a different seedkey.dll. I captured the CAN frames that were being sent via a second CAN card to look at the exact command sequence. I then extracted the seed data from the get seed reply frame and used a call library node function to call the seedkey.dll. This returned a different key to the one that was being sent in the unlock command so I could only assume that the toolkit is not calling the seedkey correctly somehow but since this is all hidden in a dll, I could not look at the exact mechanics to see what was going wrong. I then built a  VI using the frame API stuff that comes with the NI-CAN drivers cd to manually send the the frames required to connect then get seed. I use the same call library node function to call the seedkey.dll and then build another frame with the returned key. This all seems to work fine and I have an unlocked ECU. Unfortunately since I did all this with the frame API, there was no way to subsequently use the toolkit vi's as they are built around the channel API which is apparently incompatible. Feeling completely frustrated with the non-functional toolkit and having logged a couple of tech help requests with NI I have given up on the tooklit altogether, built my own A2L parser and I am almost finished with the communications interface using the frame APIs. Thanks anyway,
    Dan

  • Re:Question related to the Packet timeout error

    2010-03-08 09:11:05.273 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 15369 ms, 93 packets have timed-out, PauseRate=0.0040, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=12, Threshold=512
    2010-03-08 09:19:22.772 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 16448 ms, 111 packets have timed-out, PauseRate=0.0042, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=10, Threshold=512
    2010-03-08 09:30:52.651 Tangosol Coherence CE 3.2.2/371 <D5> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 28 ms, 20 packets have timed-out, PauseRate=0.0042, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=1, Threshold=512
    2010-03-08 09:37:50.583 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 10590 ms, 60 packets have timed-out, PauseRate=0.0043, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=5, Threshold=512
    2010-03-08 09:50:00.635 Tangosol Coherence CE 3.2.2/371 <D5> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 132 ms, 20 packets have timed-out, PauseRate=0.0043, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=1, Threshold=512
    2010-03-08 09:50:19.086 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 8954 ms, 73 packets have timed-out, PauseRate=0.0044, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=10, Threshold=512
    1. Will the packet retry if they get this timeout error?
    2. why is the logs timestamp and the packet timestamp is having very large gap nearly 1 day in some cases
    3.How long does the packet wait before it timesout ,i see the unresponsive time varies from 80ms to 10000 ms
    4.When do we get this warnings? is there any remedy?

    Wow Coherence 3.2, I haven't seen that in years, it is a pre-Oracle version. I'd suggest considering an upgrade to 3.5, which should be doable without even recompiling your code, just restart the cluster with new jars.
    But that isn't what you asked. This message was reworded in Coherence 3.3 and later to refer to these events not as packet timeouts, but as rescheduled packets do indicate that they are automatically retried.
    Regarding the timestamp that is the timestamp of the cluster member to which the packet was sent. A members timestamp is the time at which it joined the cluster.
    The default packet retry interval is 200ms, I.e. If we don't get an ACK to a packet in that time we will retransmit it. After 1m of this we will give up and remove either the sender or receiver from the cluster. The time intervals in the log messages are with respect to when the first ACK was expected, so a reported delay of 80ms means it took 280ms to delived a packet.
    These messages highlight periods of failed communication, and usually are the result of garbage collections. Some of yours are quite bad (multiple second), indicating that you've likely overcommited your java heap. The effect of the outages should be poor overall cluster performance and if bad enogh should also cause heavily GCing nodes to be kicked out of the cluster.
    Mark
    Oracle (Tangosol) Coherence

Maybe you are looking for