Package org.apache.storm.daemon.nimbus
Class Nimbus.StandaloneINimbus
- java.lang.Object
-
- org.apache.storm.daemon.nimbus.Nimbus.StandaloneINimbus
-
-
Constructor Summary
Constructors Constructor Description StandaloneINimbus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<WorkerSlot>
allSlotsAvailableForScheduling(Collection<SupervisorDetails> supervisors, Topologies topologies, Set<String> topologiesMissingAssignments)
Returns all slots that are available for the next round of scheduling.void
assignSlots(Topologies topologies, Map<String,Collection<WorkerSlot>> newSlotsByTopologyId)
this is called after the assignment is changed in ZK.IScheduler
getForcedScheduler()
String
getHostName(Map<String,SupervisorDetails> supervisors, String nodeId)
map from node id to supervisor details.void
prepare(Map<String,Object> topoConf, String schedulerLocalDir)
-
-
-
Method Detail
-
allSlotsAvailableForScheduling
public Collection<WorkerSlot> allSlotsAvailableForScheduling(Collection<SupervisorDetails> supervisors, Topologies topologies, Set<String> topologiesMissingAssignments)
Description copied from interface:INimbus
Returns all slots that are available for the next round of scheduling. A slot is available for scheduling if it is free and can be assigned to, or if it is used and can be reassigned.- Specified by:
allSlotsAvailableForScheduling
in interfaceINimbus
-
assignSlots
public void assignSlots(Topologies topologies, Map<String,Collection<WorkerSlot>> newSlotsByTopologyId)
Description copied from interface:INimbus
this is called after the assignment is changed in ZK.- Specified by:
assignSlots
in interfaceINimbus
-
getHostName
public String getHostName(Map<String,SupervisorDetails> supervisors, String nodeId)
Description copied from interface:INimbus
map from node id to supervisor details.- Specified by:
getHostName
in interfaceINimbus
-
getForcedScheduler
public IScheduler getForcedScheduler()
- Specified by:
getForcedScheduler
in interfaceINimbus
-
-