I am looking for the best way to create a task scheduler for different types of tasks. CJobs are streaming, and some tasks must be completed before the next step in this process can be completed. Currently, all this is managed through a database table ... which, I think, is in order. But if there is a better way to manage addictions, I'm all ears.
Preferably, I would like to do this in python. I see there a parallel python module that looks great, but I'm worried about this dependency problem between jobs.
Can someone recommend something that does what I need to do or how to do it?
Thank you very much!
D
UPDATE: this should be done on a server cluster with a limited set of available workers ... 1 per port. Does it support celery or SCON?
source share