TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

High bandwidth message queue options

7 pointsby setraover 7 years ago
I am looking for a program that is kind of like a message broker like RabbitMQ but without the fancy routing capabilities and just a message queue.<p>I want to stream several types of messages from one data center to another with very high throughput. The system needs to support compression, SSL encryption, and needs to be able to spill to disk as a cache if the network connection drops or is slow and attempt re-connection. No need for replay support or absolute guaranteed delivery.<p>Are there any plug and play software solutions for this? Obviously I can write these types of features into my existing software but would prefer not to.

4 comments

mottomottoover 7 years ago
NATS is another option but I think your requirements would lead you to NATS Streaming:<p><a href="https:&#x2F;&#x2F;nats.io&#x2F;documentation&#x2F;streaming&#x2F;nats-streaming-intro&#x2F;" rel="nofollow">https:&#x2F;&#x2F;nats.io&#x2F;documentation&#x2F;streaming&#x2F;nats-streaming-intro...</a><p>It doesn&#x27;t offer compression as far as I know (the FAQ suggests though that one is free of course to do compression&#x2F;decompression above NATS).
cweagansover 7 years ago
nsq.io looks interesting. @patio11 used it on Stockfighter (<a href="http:&#x2F;&#x2F;www.kalzumeus.com&#x2F;2015&#x2F;08&#x2F;20&#x2F;designing-and-building-stockfighter-our-programming-game&#x2F;" rel="nofollow">http:&#x2F;&#x2F;www.kalzumeus.com&#x2F;2015&#x2F;08&#x2F;20&#x2F;designing-and-building-s...</a>).
sharmiover 7 years ago
Kafka might be a good solution for you. It supports a high volume of messages, a simple routing protocol, is fast and scales well horizontally
vxxzyover 7 years ago
zeromq