Hi All,

Not sure if this is of any concern but looks kind of strange given the comments 
in the camel-rabbitmq component code itself.

When looking in some production logs today I spotted a load of these sort of 
messages:

-  Early reply received with correlationID 
[Camel-ID-vmsys-1536138014401-0-20030]

Then 5 seconds later:

-  Reply received for unknown correlationID 
[Camel-ID-vmsys-1536138014401-0-20030]. The message will be ignored

This appears to be happening with every timed out exchange on an InOut capable 
route. The second message is clear to me, the correlation ID got removed from 
the correlation map after the timeout and now the exchange has finally made it 
to the producer but the producer doesn't know what to do with it anymore.
The first message on the other hand looks very bizarre, given that the only 
occurrence of this is the ReplyManagerSupport class in Camel itself:

https://github.com/apache/camel/blob/master/components/camel-rabbitmq/src/main/java/org/apache/camel/component/rabbitmq/reply/ReplyManagerSupport.java

/**
     * <b>IMPORTANT:</b> This logic is only being used due to high performance 
in-memory only
     * testing using InOut over JMS. Its unlikely to happen in a real life 
situation with communication
     * to a remote broker, which always will be slower to send back reply, 
before Camel had a chance
     * to update it's internal correlation map.
     */
    protected ReplyHandler waitForProvisionCorrelationToBeUpdated(String 
correlationID, byte[] message) {
        // race condition, when using messageID as correlationID then we store 
a provisional correlation id
        // at first, which gets updated with the JMSMessageID after the message 
has been sent. And in the unlikely
        // event that the reply comes back really really fast, and the 
correlation map hasn't yet been updated
        // from the provisional id to the JMSMessageID. If so we have to wait a 
bit and lookup again.
        if (log.isWarnEnabled()) {
            log.warn("Early reply received with correlationID [{}] -> {}", 
correlationID, message);
        }
......

Should I be concerned about this logic being invoked? I'm not invoking it 
explicitly, Camel is, and it looks really strange that an 'early reply' is 
received for a timed out exchange. Anyone able to clarify what is actually 
going on here?


Thanks,
Valdis
Vhi Group DAC (Vhi) is a holding company for insurance and healthcare services, 
which include Vhi Healthcare DAC, Vhi Insurance DAC, Vhi Health Services DAC 
and Vhi Investments DAC. Vhi Healthcare DAC trading as Vhi Healthcare and Vhi 
Insurance DAC trading as Vhi Insurance are regulated by the Central Bank of 
Ireland. Vhi Healthcare is tied to Vhi Insurance DAC for health insurance in 
Ireland which is underwritten by Vhi Insurance DAC. Vhi Healthcare is tied to 
Zurich Life Assurance plc for Vhi Life Term Insurance and Vhi Mortgage 
Protection which is underwritten by Zurich Life Assurance plc. Vhi Healthcare 
is tied to Collinson Insurance Services Limited for MultiTrip Travel Insurance, 
Backpacker Travel Insurance and Vhi Dental Insurance which are underwritten by 
Great Lakes Insurance SE, UK branch and for Vhi Canada Cover and Vhi 
International Health Insurance which are underwritten by Astrenska Insurance 
Limited. For more information about the Vhi Group please go to: 
https://www.vhi.ie/about-vhi.


Tá Vhi Group DAC (Vhi) ina chuideachta sealbhaíochta le haghaidh seirbhísí 
árachais agus seirbhísí cúram sláinte, lena n-áirítear Vhi Healthcare DAC, Vhi 
Insurance DAC, Vhi Health Services DAC agus Vhi Investments DAC. Déanann Banc 
Ceannais na hÉireann rialáil ar Vhi Healthcare DAC, ag trádáil dó mar Vhi 
Healthcare, agus ar Vhi Insurance DAC, ag trádáil dó mar Vhi Insurance. Tá Vhi 
Healthcare ceangailte le Vhi Insurance DAC le haghaidh árachas sláinte in 
Éirinn, rud atá frithgheallta ag Vhi Insurance DAC. Tá Vhi Healthcare 
ceangailte le Zurich Life Assurance plc le haghaidh Árachais Saoil de chuid Vhi 
agus Árachas Cosanta Morgáiste de chuid Vhi atá frithgheallta ag Zurich Life 
Assurance plc. Tá Vhi Healthcare ceangailte le Collinson Insurance Services 
Limited le haghaidh Árachas Taistil Ilturais agus Turasóirí Mála Droma agus 
Árachas Fiaclóireachta de chuid Vhi atá frithgheallta ag Great Lakes Insurance 
SE, UK branch agus le haghaidh Clúdach Cheanada de chuid Vhi agus Árachas 
Sláinte Idirnáisiúnta de chuid Vhi atá frithgheallta ag Astrenska Insurance 
Limited. Chun tuilleadh faisnéise a fháil faoi Ghrúpa Vhi, tabhair cuairt ar: 
https://www.vhi.ie/about-vhi.

This e-mail and any files transmitted with it contain information which may be 
confidential and which may also be privileged and is intended solely for the 
use of the individual or entity to whom it is addressed. Unless you are the 
intended recipient you may not copy or use it, or disclose it to anyone else. 
Any opinions expressed are that of the individual and not necessarily that of 
the Vhi Group. If you have received this e-mail in error please notify the 
sender by return.







Reply via email to