RabbitMQ as a proxy between a data store and a producer ?
- by hyperboreean
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.