Subhash
Subhash

Reputation: 13

Publish/subscribe listen for all topic #

I am using Apache ActiveMQ as a Brocker and Sensor devices continously publish data to it. I want to write a subsriber # whih collect all data that broker listens.
Whther a client implemation can really scale for this kind of opeartion. what are the things to be considerd while making such client set up( subscriber)

thanks and regards

Upvotes: 0

Views: 119

Answers (1)

hardillb
hardillb

Reputation: 59638

If a separate client subscribed to # will work will very much depend on the throughput/load levels involved and how well that client is written.

Some brokers (e.g. HiveMQ) have plugins that will do DB persistence directly at the broker level which for very high throughput situations may be better.

Upvotes: 1

Related Questions