I am building an application to Consume high volume (streaming) message from RabbitMQ. Following is the situation
- There is RabbitMQ where publisher is publishing Live Match data which means volume of data is very fast( 100 messges per second per queue)
- In RabbitMQ the max queue length is 500 (messages).
- Which means if consumer don't receive the message very fast, messages will be lost
Following are my Queries
What pattern/architecture/tool is best for the above scenario?(To consume messages very fast)
Will MassTransit fullfil the above requirement?