What's the best way to delete specific messages from the JMS?

2010-07-20 Thread odysseyfx
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

Re: Topic Memory Increases until broker dies

2010-05-27 Thread odysseyfx
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

Web Interfaces are Empty with Pure Master/Slave

2010-04-10 Thread odysseyfx
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

Re: How does a consumer connect to a specific message group?

2010-04-07 Thread odysseyfx
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

How does a consumer connect to a specific message group?

2010-04-07 Thread odysseyfx
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