As I know, In RocketMq, a "queue" is similar as a "partition" in Kafka. One topic has multiple queues, also has multiple brokers(master and slave).
But how are the queues are mapped to the masters?
For example, if I have a topic with 3 queues, and 3 masters. The 3 queues are distributed among the 3 masters? or each master has 3 queues?
You can specify the queue numbers When you create topic:
That means you can decide the queue numbers in any broker or cluster. More details please refer to here.