Class RoundRobin
java.lang.Object
edu.isi.pegasus.planner.selector.site.Abstract
edu.isi.pegasus.planner.selector.site.AbstractPerJob
edu.isi.pegasus.planner.selector.site.RoundRobin
- All Implemented Interfaces:
SiteSelector
This ends up scheduling the jobs in a round robin manner. In order to avoid starvation, the jobs
are scheduled in a round robin manner per level, and the queue is initialised for each level.
- Version:
- $Revision$
- Author:
- Karan Vahi
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) class
A inner name value class that associates a string with an int value. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate int
The current level in the abstract workflow.private LinkedList
The list of pools that have been given by the user at run time or has been authenticated against.Fields inherited from class edu.isi.pegasus.planner.selector.site.Abstract
mBag, mLogger, mProps, mSiteStore, mTCMapper
Fields inherited from interface edu.isi.pegasus.planner.selector.SiteSelector
SITE_NOT_FOUND, VERSION
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a brief description of the site selection techinque implemented by this class.private void
initialiseList
(List pools) It initialises the internal list.private String
listToString
(List elements) void
Maps a job in the workflow to an execution site.Methods inherited from class edu.isi.pegasus.planner.selector.site.AbstractPerJob
mapWorkflow
Methods inherited from class edu.isi.pegasus.planner.selector.site.Abstract
initialize
-
Field Details
-
mCurrentLevel
private int mCurrentLevelThe current level in the abstract workflow. It is level that is designated by Chimera while constructing the graph bottom up. -
mExecPools
The list of pools that have been given by the user at run time or has been authenticated against. At present these are the same as the list of pools that is passed for site selection at each function.
-
-
Constructor Details
-
RoundRobin
public RoundRobin()The default constructor. Not to be used.
-
-
Method Details
-
description
Returns a brief description of the site selection techinque implemented by this class.- Returns:
- String
-
mapJob
Maps a job in the workflow to an execution site.- Specified by:
mapJob
in classAbstractPerJob
- Parameters:
job
- the job to be mapped.sites
- the list ofString
objects representing the execution sites that can be used.
-
initialiseList
It initialises the internal list. A node in the list corresponds to a pool that can be used, and has the value associated with it which is the number of jobs in the current level have been scheduled to it.- Parameters:
pools
- List
-
listToString
-