This repository was archived by the owner on Aug 3, 2025. It is now read-only.

Description
Before we can implement the scheduler in code, we should decide on how the jobs will be scheduled.
We have a few options, based on current schedulers, such as round robin, CFS, or even FIFO. However, since we will most likely have a job queue and also are running on multiple systems, we will need to ensure that all tasks are run fairly and also that workers are not overloaded with tasks while some do no work at all.