Package org.apache.storm.scheduler
Class DefaultScheduler
java.lang.Object
org.apache.storm.scheduler.DefaultScheduler
- All Implemented Interfaces:
- INodeAssignmentSentCallBack,- IScheduler
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionconfig()This function returns the scheduler's configuration.static voiddefaultSchedule(Topologies topologies, Cluster cluster) voidprepare(Map<String, Object> conf, StormMetricsRegistry metricsRegistry) voidschedule(Topologies topologies, Cluster cluster) Set assignments for the topologies which needs scheduling.static Set<WorkerSlot>slotsCanReassign(Cluster cluster, Set<WorkerSlot> slots) Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.storm.scheduler.INodeAssignmentSentCallBacknodeAssignmentSentMethods inherited from interface org.apache.storm.scheduler.ISchedulercleanup
- 
Constructor Details- 
DefaultSchedulerpublic DefaultScheduler()
 
- 
- 
Method Details- 
slotsCanReassign
- 
defaultSchedule
- 
prepare- Specified by:
- preparein interface- IScheduler
 
- 
scheduleDescription copied from interface:ISchedulerSet assignments for the topologies which needs scheduling. The new assignments is available through `cluster.getAssignments()`- Specified by:
- schedulein interface- IScheduler
- Parameters:
- topologies- all the topologies in the cluster, some of them need schedule. Topologies object here only contain static information about topologies. Information like assignments, slots are all in the `cluster` object.
- cluster- the cluster these topologies are running in. `cluster` contains everything user need to develop a new scheduling logic. e.g. supervisors information, available slots, current assignments for all the topologies etc. User can set the new assignment for topologies using cluster.setAssignmentById()`
 
- 
configDescription copied from interface:ISchedulerThis function returns the scheduler's configuration.- Specified by:
- configin interface- IScheduler
- Returns:
- The scheduler's configuration.
 
 
-