Rabbitmq queue sharding
Posted
by
kolchanov
on Stack Overflow
See other posts from Stack Overflow
or by kolchanov
Published on 2012-09-11T20:31:07Z
Indexed on
2012/09/12
15:38 UTC
Read the original article
Hit count: 321
I have to implement this scenario:
An external application publish message to rabbitmq.
This message has a client_id property. We can place this id to routing key or message header or some other property.
I have to implement sharding in a exchange routng logic - the message should be delivered to specific queue based on the client_id range.
Is it possible to implement in a standard exchanges?
If not what exchange should I take as the base?
How to dynamicly change client_id ranges?
© Stack Overflow or respective owner