Re: STOMP - Client Individual Ack

2020-08-26 Thread Justin Bertram
> Is there no way for me to limit the amount of time it can sit in delivery, without the client closing? Sure there is. Just configure slow-consumer detection as described in the documentation [1]. I apologize if I misunderstood, but it didn't appear that you were asking about how the broker coul

Re: STOMP - Client Individual Ack

2020-08-26 Thread Christopher Pisz
Is there no way for me to limit the amount of time it can sit in delivery, without the client closing? i.e What if the client receives messages but its processing threads are hung? On Wed, Aug 26, 2020 at 4:10 PM Justin Bertram wrote: > In this situation (where a message has been dispatched to a

Re: STOMP - Client Individual Ack

2020-08-26 Thread Justin Bertram
In this situation (where a message has been dispatched to a client but the client has not yet acknowledged that message) the broker will mark that message as being "in delivery." You can see this in the admin console, for example, by looking at the "Delivering Count" of the queue in question. The m

STOMP - Client Individual Ack

2020-08-26 Thread Christopher Pisz
What is the expected behavior from Artemis if I * Connect to Artemis using the STOMP protocol * Subscribe to a queue specifying Client-Individual as my Ack mode * Receive a message from the queue to which I subscribed * Never send an Ack for it?