TamVu
TamVu

Reputation: 11

Use Chronicle Queue as Pub/Sub

I wanna build a micro services system, and i'm choosing the message queue. As the title, can I use Chonicle queue as a pub/sub system? I read that Chronicle Queue can be used as a message passing between jvms on the same machine, but how can we achieve this on different machines? If we use replication, on a gateway host machine we create a source queue and replicate it to sub service machine (sink), so we can pass message from gateway to sub service. How can we do the vice versa from sub service to the gateway?

Upvotes: 1

Views: 421

Answers (1)

Peter Lawrey
Peter Lawrey

Reputation: 533492

To pass data from one machine to another you can use replication. This works the same whether you pass from a gateway to a service or from a service to a gateway.

NOTE: replication is a licensed feature for Chronicle Queue.

Upvotes: 0

Related Questions