Live data from Hacker News

Disque 1.0 RC1 is out

antirez.com

41–50 of 54 posts

Re: Disque 1.0 RC1 is out

#41
post #24

Earlier quoted context omitted.

I would argue that job management is unrelated to messaging, at least according my loose definition of a task that: * Has a well-defined lifetime — unstarted, running, paused, completed successfully, or failed; * Is executed from some kind of parameterized "job specification" that describes its inputs and desired behavior; * Has state data (e.g., completion % progress, log output, metrics, transactional continutation…

This is basically the architecture of Arvados Crunch: http://arvados.org

I almost skipped your comment as I misread as Church. Looks like a great project!

Re: Disque 1.0 RC1 is out

#43
This looks interesting!

Currently, we have a huge background processing system built using Sidekiq backed by Redis. The biggest problem we are facing today is to run machines with lot of in-memory storage because jobs are queued to Redis and Redis works in-memory. These machines costs a lot.

I think the same issue will happen even here because this is also in-memory store and persistence works like how Redis handles it.

Re: Disque 1.0 RC1 is out

#44
post #22

Earlier quoted context omitted.

I've been using Sidekiq for the past 2 years, and deem it as production ready. It does force you to use Redis and Ruby though.

I'm building a node.js application now and WISH we had something half as good as Sidekiq written in Javascript.

You can use Sidekiq in many environments where somebody has written libraries, eg. Go, Elixir, JavaScript (https://github.com/loopj/node-sidekiq) .

Re: Disque 1.0 RC1 is out

#45
post #12

Earlier quoted context omitted.

Kafka has a different data model which works for some scenarios, but not others. We attempted to use Kafka as part of a job management system, where long-running jobs were scheduled and workers consumed partitions, but what we found was that since consumers work on partitions, a long-running task could block an entire partition's worth of work, with no way to migrate it to another partition. Kafka works really well w…

I would argue that job management is unrelated to messaging, at least according my loose definition of a task that: * Has a well-defined lifetime — unstarted, running, paused, completed successfully, or failed; * Is executed from some kind of parameterized "job specification" that describes its inputs and desired behavior; * Has state data (e.g., completion % progress, log output, metrics, transactional continutation…

My gripe with using a relational database as a priority queue is tends not to scale well. (Similarly as if you tried to use a relational database as a queue).

Once you get to the 10s of millions of messages per day (for example ~8M at priority X and 2M at priority Y), performance tends to go down the drain (due to contention), disk space bloats (due to vacumming/deletes).

I've yet to come across a good task scheduling system that will take into the account resources available and the priority of the tasks, while still usable on a largish dataset that isn't a pain to maintain.

Re: Disque 1.0 RC1 is out

#47
post #25

> However I’m not living into the illusion that I got everything right in the first release, so it will take months (or years?) of iteration to really reach the operational simplicity I’m targeting. It's always refreshing to hear such good programmers acknowledging how hard building complex systems is.

And this from antirez who writes such excellent programms, Redis runs in several companies I've been, without ever crashing, making any trouble - most people I've met forget they have Redis running because it just works and works and works. Can't praise that piece of code high enough.

Indeed, we have had redis running in production for four years now and I can't remember a single crash happening. If something goes wrong in our stack redis is the last thing we check. Antirez should write a http web server :-)

Re: Disque 1.0 RC1 is out

#48

Disque is definitely exciting, and looks like it can replace RabbitMQ, which has serious flaws in its clustering design. I'm looking forward to trying it out. However, if some constructive criticism is permitted, I have to say that, having written distributed applications for many years, I have come to dislike the "classical" push/pop queue data model: * Acking is a bad idea. It requires the broker to manage a lot of…

Hello, thanks for the comment. I hope the following notes may help to make clear what are the ideas behind the design decisions used in Disque:

> Acking is a bad idea. It requires the broker to manage a lot of state, including locking and timeouts.

I think it’s much better to put the complexity on the broker than putting it on the client. It’s definitely a tradeoff so many other people may not agree. Because of ACKs, a message will be delivered again to some client forever until there is a clear proof that the client processed the message (the ACK). The client has very little room for errors. In the Kafka model, which makes sense when you want to do stream processing, the client has to handle the storage of the offset. When the offset is committed to the broker itself, then the broker becomes a store that must guarantee certain kinds of consistency, which is fairly more complex than taking state in an AP system. Given that Disque targets workloads which are not stream oriented, where the order of messages is not very important, if not for the best-effort of trying to serve first who arrived first on the average case, to put the complexity of handling the state to the client (by managing the offset), or to the broker by solving a storage and consistency problem, seems a bad idea to me.

> Re-queuing invalidates total ordering.

This is a fundamental assumption of Disque: “causal/total order of messages is overrated”. There are a few use cases where it is a very important feature to have, there are a lot of use cases where it is not. When you don’t have to guarantee order, a lot of scalability and robustness can be added to the system since it can be AP, can handle the re-delivery of messages avoiding to put complexity to the client, can survive larger network issues, does not need any strongly consistent component which can make operations harder, and so forth.

> On the performance side, parallel distributed queue consumption (which also breaks total ordering) is directly at odds with this model.

I don’t agree with this statement. Because of this data model, different producers and consumers for the same huge queue, can split the load among many nodes in a completely scalable way. But this does not prevent scaling many unrelated queues as well. Different nodes will handle different queues, and Disque has mechanisms in order to improve affinity so that producers and consumers for the same queues will try to stay to the same nodes whenever possible.

Similarly not having to solve a storage problem (to commit clients offsets) makes a system easier to scale. To store something consistently is almost always going to cost some performance.

> Queues as opaque objects — you can only inspect by popping the top message, and you cannot access older, dequeued messages. Fortunately, Disque allows you to read the entire queue without mutating it, but it doesn't look like you can read old messages.

Disque has iterators in order to solve this problem. You can iterate, with filters, the whole messages space. However note that in the Kafka model you have the problem that the queue is a linar accessible object but without clues about what was processed and not, since the broker itself (AFAIK) has no clue about what the state of a job is: to be processed, already processed, processed 10 times with errors, and so forth. Again, this is a tradeoff, I’m much more happy with more state on the broker than on the client for the use cases Disque is designed for.

* Complicated queue topologies (fanouts, dead letter queues, etc.) become a logical necessity of the strict FIFO structure. (These topologies need to be declared every time the client starts up, and introduces the possibility of schema conflicts.)

Not sure about this since as said strict FIFO is not targeted nor possible with Disque.

* Logical de-duping is probably not possible.

This is true (or not) with all the messaging systems, basically. Storing the offset in the client side (or committing it to the broker) is the same: you need to have a consistent store, somewhere, in order to make sure after crash recovery events or network partitions you are not going to process the same messages again. Actually in order to guarantee single processing you have to store the offset as part of the transaction that produces the effects of processing the message. The same can be achieved with any messaging system that guarantees the delivery of the message, if you have a CP store somewhere. The trivial case is that you use unique IDs in order to make processing idempotent, or you use to store states in the CP store in order to make out of order delivery of messages not an issue since you ignore every message which does not match the current state. This is more the matter of moving things in some place or the other. For all the cases where single processing is desirable but not extremely important, Disque “cheap” best-effort single processing can be enough and is very scalable.

> Last point: The fact that Disque calls its messages "jobs" makes me a little disappointed that it is, in fact, not a job management system. I'd love a solid, distributed job manager.

Disque is a general messaging system, but certain design characteristics are biased towards the idea that messages will be jobs. However it is opinionated about what should be and what should not be inside the broker itself. If you want more, it’s up to the client library to implement a more full fledged job processing system on top of what Disque provides.

Last note: given that I wrote Disque to provide something to the OSS world, I was not very interested in competing with something in particular: Kafka or RabbitMQ or some other message queue. Actually the less overlap the better, so my attempt was to create something different. There are things at which existing technologies will be better and maybe there will be things at which Disque will be better.

Re: Disque 1.0 RC1 is out

#49
post #33

Looking forward to Aphyr's Call Me Maybe for Disque.

Someone else could also do the analysis, Jepsen is open source

Good hint. I tried to run the initial tests Kyle (Aphyr) wrote for Disque in order to debug a problem, and after running Jepsen a few times you realize how cool it is, and you want to run your own tests. However Jepsen is a non trivial system and requires some Clojure skill, so I postponed this activity for later... resorting to simpler systems to test Disque for now. But soon or later I want to spend a few weeks at learning Jepsen and enough Clojure in order to do my tests.

However note that the value of having Kyle testing Disque is not just his ability to use Jepsen well (of course) but also the design of the tests so in order to stress the right things to find bugs. And finally the whole analysis that is performed together with the test. So regardless of the fact I'll learn Jepsen or not I hope Disque will get some official testing with Jepsen. However I understand Kyle is a single person and there is a huge queue of systems to be tested.

Re: Disque 1.0 RC1 is out

#50
post #47

Earlier quoted context omitted.

And this from antirez who writes such excellent programms, Redis runs in several companies I've been, without ever crashing, making any trouble - most people I've met forget they have Redis running because it just works and works and works. Can't praise that piece of code high enough.

Indeed, we have had redis running in production for four years now and I can't remember a single crash happening. If something goes wrong in our stack redis is the last thing we check. Antirez should write a http web server :-)

+100 'Antirez should write a http web server'
Post reply on HN