Ask HN: What's your go-to message queue in 2025?
31–40 of 99 posts
Re: Ask HN: What's your go-to message queue in 2025?
#32I am using Beanstalkd, it is small and fast and you just apt-get it on Debian. However, I have noticed that oftentimes devs are using queues where Workflow Engines would be a better fit. If your message processing time is in tens of seconds – talk to your local Workflow Engine professional (:
Re: Ask HN: What's your go-to message queue in 2025?
#33Architecture info: https://explore.fednow.org/resources/technical-overview-guid...
Re: Ask HN: What's your go-to message queue in 2025?
#34I played with most message queues and I go with RabbitMQ in production. Mostly because it has been very reliable for years in production at a previous company, and doesn’t require babysitting. Its recent versions also has new features that make it is a descent alternative to Kafka if you don’t need to scale to the moon. And the logo is a rabbit.
inb4 "oh but you wont be taken seriously" well... datadog.
Re: Ask HN: What's your go-to message queue in 2025?
#35Postgres. Doing ~ 70k messages/second average. Nothing huge but don’t need anything dedicated yet.
I'm curious on how people use Postgres as a message queue. Do you rely on libraries or do you run a custom implementation?
Re: Ask HN: What's your go-to message queue in 2025?
#36Postgres. Doing ~ 70k messages/second average. Nothing huge but don’t need anything dedicated yet.
I'm curious on how people use Postgres as a message queue. Do you rely on libraries or do you run a custom implementation?
Re: Ask HN: What's your go-to message queue in 2025?
#37Postgres. Doing ~ 70k messages/second average. Nothing huge but don’t need anything dedicated yet.
I'm curious on how people use Postgres as a message queue. Do you rely on libraries or do you run a custom implementation?
Re: Ask HN: What's your go-to message queue in 2025?
#38using zeebe/Camunda at work. The system gives you a way of designing and partitioning message-based workflows. It has a very thorough design.
Re: Ask HN: What's your go-to message queue in 2025?
#39The US Federal Reserve uses IBM MQ for the FedNow interbank settlement service that went live last year. Architecture info: https://explore.fednow.org/resources/technical-overview-guid...
Re: Ask HN: What's your go-to message queue in 2025?
#40For those unfamiliar, it's a Lua library that gets executed in Redis using one of the various language bindings (which are essentially wrappers around calling the Lua methods).
With our multi-node redis setup it seems to be quite reliable.