How to retreive messages from the producer Side when artemis is down?

168 views Asked by At

Explanation : I have a consumer and producer , I want to see that when I am pushing messages from the consumer side to the JMS(ARTEMIS) if the artemis is down then my messages are not accepted by artemis.

This means that when I turn on my artemis the messages are not there in the artemis queue bcz they are lost.

I want to know is there any configuration( like a buffer) which we can set in the context.xml of the consumer side so that we save the messages which are pushed , while the artemis is still getting back on track .

At the moment I have there parameters.

consumerWindowSize = 1024000000 bytes
producerWindowSize = 102400000 bytes
maxRetryInterval = 1000000 ms
setCallFailoverTimeout = 50000ms

Looking forward. Please help.

1

There are 1 answers

3
Tim Bish On

The Artemis JMS client does not provide any client side message buffering. You would have to implement this yourself or use some other third party library to do that.

You could possibly run a local Artemis instance and use a bridge or network it to the normal remote such that the local broker continues to receive messages while the remote broker is down.