dbader / schedule

Python job scheduling for humans.
https://schedule.readthedocs.io/
MIT License
11.62k stars 954 forks source link

scaling / multiple workers #624

Open mustafa0x opened 2 months ago

mustafa0x commented 2 months ago

I want to run a task every 5 seconds. I want to use multiple workers, so that if a task needs significant time, it doesn't block other tasks from running.

Should I use multiple schedulers? Or parallel execution?

Or do I need to create entirely separate workers?