Is this correct?
The reason I ask is that at my company our deployment process assumes that you can have multiple instances of your application running at any time, and from the looks of the central scheduling server does not support that. I've toyed with executing tasks via celery, but then I lose all the benefits of central scheduler. Has anyone else run into this problem?
--
You received this message because you are subscribed to the Google Groups "Luigi" group.
To unsubscribe from this group and stop receiving emails from it, send an email to luigi-user+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
http://tech.adroll.com/blog/data/2015/10/15/luigi.html
I've been using luigi to track my job dependencies, but I'd like to be able to distribute jobs across several machines too. I'm using AddRoll's strategy of defining a docker image within a luigi task and calling out to a task queue (and waiting), but their queue 'quentin' is not open source. I chose celery for my task queue, but I can't get it to return that a task is completed/failed so that my luigi task will finish. If I watch the celery command line it says my tasks have completed (output files are there), but it wont return the result state reliabily. I'm new to celery (just this week) so I'm probably configuring it wrong or something. Let me know if this helps or if you've found a clear