RabbitMQ as a proxy between a data store and a producer ?
Posted
by hyperboreean
on Stack Overflow
See other posts from Stack Overflow
or by hyperboreean
Published on 2010-05-26T15:54:29Z
Indexed on
2010/05/26
22:01 UTC
Read the original article
Hit count: 144
rabbitmq
I have some code that produces lots of data that should be stored in the database. The problem is that the database can't keep with the data that it gets produced. So I am wondering whether some kind of queuing mechanism would help in this situation - I am thinking in particular at RabiitMQ and whether is feasible to have the data stored in its queues until some consumer gets the data out of it and pushes it to the database. Also, I am not particular interested whether that data made it to the database or not because pretty soon, the same data will be updated.
© Stack Overflow or respective owner