What's the best way to delete specific messages from the JMS? Initially I was
using the activemq specific feature of individual acknowledgement, however I
didn't like the idea of using something not part of the JMS spec. I
switched to using a browser, and then building a consumer with a selector
I've seen this problem fairly frequently. This is caused by a message
producer on a topic creating messages faster than a consumer can consume
them. Those messages then get backed up on the broker internal dispatch
queue for that session until all resources are consumed when the broker
deadlock
Using activemq 5.3.1 I have two configured to use Pure Master Slave.
Everything seems to work, I can make connections and failover, however the
web interfaces come up blank. I changed the Jetty port to be different on
the slave and I can access boththey just show no data.
Do I need to confi
Thanks!
odysseyfx wrote:
>
> I was reading the Message Group documentation, and it's very clear how you
> can post messages to a queue for a message group. However, it's not clear
> how a Consumer reads from a specific message group.
>
> Should I just us
I was reading the Message Group documentation, and it's very clear how you
can post messages to a queue for a message group. However, it's not clear
how a Consumer reads from a specific message group.
Should I just use a message selector for the JMSXGroupID?
If that is true, then how is this