Explore NATS Queueing
NATS supports a form of load balancing using queue groups. Subscribers register a queue group name. A single subscriber in the group is randomly selected to receive the message.
Prerequisites
Go, node.js, ruby and the NATS server should be installed.
1. Start the NATS server
2. Clone the repositories for each client examples
3. Run the Go client subscriber, providing a queue group name
4. Install and run the Node client subscriber with queue group name
5. Install and run the Ruby client subscriber with queue group name
6. Run another Go client subscriber without the queue group.
7. Publish a NATS message using the Go client
8. Verify message publication and receipt
You should see that the publisher the message and prints: Published [foo] : 'Hello NATS!'
You should see that only one of the my-queue group subscribers receives the message and prints it. In addition, the Go client subscriber not in the my-queue group should also receive and print the message.
9. Publish another message
You should see that a different queue group subscriber receives the message this time, chosen at random among the 3 queue group members.
最后更新于
这有帮助吗?