We have an issue in ActiveMQ where we have a huge number of messages not dropping off topics.
The topics are set to non-persistent, non-durable.
Our Activemq.xml file is
I have an ActiveMq topic which I wish to transform and share with an external broker. At present I have the following which performs the transformation:
Well, lets say I'm building ActiveMQ based chat application. It's pretty simple. Having only one QUEUE.IN and one TOPIC.OUT. All messages are simply routed right away from QUEUE.IN to TOPIC.OUT. Clients ...
I have a system (let's call it System A) that allows the user to turn on certain processing functions. When these functions are activated, System A will listen for messages from ...
Running activeMQ 5.4.0 . I have a group of users that subscribe and publish to eachother on various topics through a common activeMQ JMS provider. After a while of activity, the ...
Lets say I have a network of brokers which share a topic on which orders are published. I have two brokers one in location A and one in location B.
One of ...
I am having some trouble with an ActiveMQ broker not removing unused topics from it's memory.
Currently our system is designed to generate many topics dynamically with names designated at ...
JMS Topic and JMS Selector are quite different concept, yet they both can be used by a consumer to get only a subset of the messages.
in a PubSub scenario, what ...
From what I've read so-far, a JMS Topic is 1-to-Many and I wonder if its possible to support Many-to-Many using a topic. Consider a topic called "Reports" with multiple services spread ...