golang 有什么比较好得分布式任务队列,类似Python...
发布网友
发布时间:2022-04-22 08:12
我来回答
共1个回答
热心网友
时间:2024-11-06 00:27
https://github.com/bitly/nsq
NSQ is a realtime distributed messaging platform designed to operate at scale, handling
billions of messages per day.
It promotes distributed and decentralized topologies without single points of failure,
enabling fault tolerance and high availability coupled with a reliable message delivery
guarantee. See features & guarantees.
Operationally, NSQ is easy to configure and deploy (all parameters are specified on the command
line and compiled binaries have no runtime dependencies). For maximum flexibility, it is agnostic to
data format (messages can be JSON, MsgPack, Protocol Buffers, or anything else). Official Go and
Python libraries are available out of the box (as well as many other client
libraries) and, if you're interested in building your own, there's a protocol
spec.
We publish binary releases for linux and darwin.
NOTE: master is our development branch and may not be stable at all times.