A class that defines a conservative backfilling batch scheduler. More...
#include <CONSERVATIVEBFBatchScheduler.h>
Public Member Functions | |
CONSERVATIVEBFBatchScheduler (BatchComputeService *cs) | |
Constructor. More... | |
void | compactSchedule () |
Method to compact the schedule. | |
std::map< std::string, double > | getStartTimeEstimates (std::set< std::tuple< std::string, unsigned long, unsigned long, double >> set_of_jobs) override |
Method to obtain start time estimates. More... | |
void | processJobCompletion (std::shared_ptr< BatchJob > batch_job) override |
Method to process a job completion. More... | |
void | processJobFailure (std::shared_ptr< BatchJob > batch_job) override |
Method to process a job failure. More... | |
void | processJobSubmission (std::shared_ptr< BatchJob > batch_job) override |
Method to process a job submission. More... | |
void | processJobTermination (std::shared_ptr< BatchJob > batch_job) override |
Method to process a job termination. More... | |
void | processQueuedJobs () override |
Method to schedule (possibly) the next jobs to be scheduled. | |
std::map< std::string, std::tuple< unsigned long, double > > | scheduleOnHosts (unsigned long, unsigned long, double) override |
Method to figure out on which actual resources a job could be scheduled right now. More... | |
Public Member Functions inherited from wrench::HomegrownBatchScheduler | |
HomegrownBatchScheduler (BatchComputeService *cs) | |
Constructor. More... | |
void | init () override |
Initialization method. More... | |
void | launch () override |
Launch method. | |
void | shutdown () override |
Shutdown method. | |
Public Member Functions inherited from wrench::BatchScheduler | |
BatchScheduler (BatchComputeService *cs) | |
Constructor. More... | |
virtual | ~BatchScheduler ()=default |
Destructor. | |
Additional Inherited Members | |
Protected Attributes inherited from wrench::BatchScheduler | |
BatchComputeService * | cs |
Compute service for which this scheduler is operating. | |
Detailed Description
A class that defines a conservative backfilling batch scheduler.
Constructor & Destructor Documentation
◆ CONSERVATIVEBFBatchScheduler()
|
explicit |
Constructor.
- Parameters
-
cs The BatchComputeService for which this scheduler is working
Member Function Documentation
◆ getStartTimeEstimates()
|
overridevirtual |
Method to obtain start time estimates.
- Parameters
-
set_of_jobs a set of job specs
- Returns
- map of estimates
Implements wrench::BatchScheduler.
◆ processJobCompletion()
|
overridevirtual |
Method to process a job completion.
- Parameters
-
batch_job the job that completed
Implements wrench::BatchScheduler.
◆ processJobFailure()
|
overridevirtual |
Method to process a job failure.
- Parameters
-
batch_job the job that failed
Implements wrench::BatchScheduler.
◆ processJobSubmission()
|
overridevirtual |
Method to process a job submission.
- Parameters
-
batch_job the newly submitted batch job
Implements wrench::BatchScheduler.
◆ processJobTermination()
|
overridevirtual |
Method to process a job termination.
- Parameters
-
batch_job the job that was terminated
Implements wrench::BatchScheduler.
◆ scheduleOnHosts()
|
overridevirtual |
Method to figure out on which actual resources a job could be scheduled right now.
- Parameters
-
num_nodes number of nodes cores_per_node number of cores per node ram_per_node amount of RAM
- Returns
Implements wrench::HomegrownBatchScheduler.
The documentation for this class was generated from the following files:
- CONSERVATIVEBFBatchScheduler.h
- CONSERVATIVEBFBatchScheduler.cpp