I'm looking for an open source queue solution with similar qualities. All I really want are topics/messages/publishers/subscribers. That's it.
I do not want to run ZooKeeper.
I'm looking for an open source queue solution with similar qualities. All I really want are topics/messages/publishers/subscribers. That's it.
I do not want to run ZooKeeper.
13 comments
Literally, the sqlite of queues.
Redis can be used as simple message queue as well.
It's a single binary and can operate as a message bus, persistent queue, KV store, object store, provide services, and so on.
Otherwise I would really say it is more like the Postgres of queues (still great, but potentially not what OP is looking for)
Will SQLite work for your application?
I’m sure there are better solutions on paper and for performance under common workloads. But if SQLite is good enough for your use case, it’s good enough for your use case.
It probably isnt. Good luck.