5 ms·
The goals are a little different but I think it's worth pointing out ElasticMQ. I use it simulate sqs in a docker environment. https://github.com/softwaremill/
by 4RealFreedom 2y ago
The goals are a little different but I think it's worth pointing out ElasticMQ. I use it simulate sqs in a docker environment.
https://github.com/softwaremill/elasticmq https://github.com/softwaremill/elasticmq
- cies 2y agoWe use ElasticMQ to have an SQS compatible service for local development. We use it with docker-compose locally. In our remote envs we use SQS. So far I had not problems with ElasticMQ. I'm much intrigued by the small LOC count of SmoothMQ. When I compare it to ElasticMQ it's much smaller (probably by using sqlite's features). https://github.com/softwaremill/elasticmq https://github.com/softwaremill/elasticmq
- memset 2y agoI have looked at elasticmq but not played with it myself. You might also be interested in their benchmarks of all of the existing queues out there: https://softwaremill.com/mqperf/ https://softwaremill.com/mqperf/
- julius 2y agoI also just used ElasticMQ in a docker environment. Did you see any specific downsides, when you looked at it? In which scenarios should I consider replacing it with your solution?