Ask HN: What's your go-to message queue in 2025?
21–30 of 99 posts
Re: Ask HN: What's your go-to message queue in 2025?
#22For large applications in a service-oriented architecture, I leverage Kafka 100% of the time. With Confluent Cloud and Amazon MSK, infra is relatively trivial to maintain. There's really no reason to use anything else for this. For smaller projects of "job queues," I tend to use Amazon SQS or RabbitMQ. But just for clarity, Kafka is not really a message queue -- it's a persistent structured log that can be used as a…
It depends on your use case (or maybe what you mean by "client"). If I just have a bunch of messages that need to be processed by "some" client, then having the message disappear once a client has processed it is exactly what you want.
Re: Ask HN: What's your go-to message queue in 2025?
#23Re: Ask HN: What's your go-to message queue in 2025?
#24No one ever seems to use it, but for AMPQ I like Beanstalkd. It’s fast, stable and has not failed me under high RPS.
Re: Ask HN: What's your go-to message queue in 2025?
#25For large applications in a service-oriented architecture, I leverage Kafka 100% of the time. With Confluent Cloud and Amazon MSK, infra is relatively trivial to maintain. There's really no reason to use anything else for this. For smaller projects of "job queues," I tend to use Amazon SQS or RabbitMQ. But just for clarity, Kafka is not really a message queue -- it's a persistent structured log that can be used as a…
Re: Ask HN: What's your go-to message queue in 2025?
#26However, 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?
#27Re: Ask HN: What's your go-to message queue in 2025?
#28Re: Ask HN: What's your go-to message queue in 2025?
#29Re: Ask HN: What's your go-to message queue in 2025?
#30Postgres. Doing ~ 70k messages/second average. Nothing huge but don’t need anything dedicated yet.