Design a distributed FIFO message queue
Anonymous User
508

Design a distributed messaging queue that supports FIFO ordering and handles failure modes like: (i) Subscriber fails to handle the message from the queue (retry the request depending on the failure) (ii) Duplicate messages getting handled by the subscriber,

The queue can have multiple publishers and multiple subscribers.

Comments (0)