Scheduler ABC class - #465
Draft
Gautzilla wants to merge 20 commits into
Draft
Conversation
Collaborator
Gautzilla
marked this pull request as draft
August 25, 2026 07:44
Contributor
Author
|
@mathieudpnt I've converted this PR back to draft cause I'll start working on the SLURM implementation and might do some changes here during the process |
Gautzilla
force-pushed
the
scheduler-ABC
branch
from
August 31, 2026 15:00
78099e7 to
6a05e45
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
👔 Job module rework
The
Jobmodule was kind of a mess, I tried to split the logic a bit to make room for the integration of other schedulers (mostly SLURM in the next days)What changed?
Before we only had the
Jobmodule with several classes:JobJobConfigJobBuilderNow, the
Joblogic is spread out between the actual job things and the scheduler part:JobScheduler(ABC):Pbs(Scheduler)Slurm(Scheduler)(to do)JobConfig- Write jobs to file
- Submit job files
in a specific schedulerJobBuilderWhat changed for the user?
Every PBS-related stuff that was in the
JobandJobConfigclasses was moved to the scheduler. e.g.:Public API before changes
Public API after changes
Core API
The logic feels the same with the Core API, where
write()andsubmit()methods are now done through the scheduler rather than the job itself: