Package hudson.model.queue
Class LoadPredictor
java.lang.Object
hudson.model.queue.LoadPredictor
- All Implemented Interfaces:
- ExtensionPoint
- Direct Known Subclasses:
- LoadPredictor.CurrentlyRunningTasks
Predicts future load to the system, to assist the scheduling decisions
 
When Hudson makes a scheduling decision, Hudson considers predicted future load — e.g., "We do currently have one available executor, but we know we need this for something else in 30 minutes, so we can't currently schedule a build that takes 1 hour."
This extension point plugs in such estimation of future load.
- Author:
- Kohsuke Kawaguchi
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classConsiders currently running tasks and their completion.Nested classes/interfaces inherited from interface hudson.ExtensionPointExtensionPoint.LegacyInstancesAreScopedToHudson
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic ExtensionList<LoadPredictor> all()All the registered instances.Deprecated.predict(MappingWorksheet plan, Computer computer, long start, long end) Estimates load starting from the 'start' timestamp, up to the 'end' timestamp.
- 
Constructor Details- 
LoadPredictorpublic LoadPredictor()
 
- 
- 
Method Details- 
predictEstimates load starting from the 'start' timestamp, up to the 'end' timestamp.- Parameters:
- plan- This is the execution plan for which we are making a load prediction. Never null. While this object is still being partially constructed when this method is called, some of its properties (like- MappingWorksheet.itemprovide access to more contextual information.
- start- Where to start enumeration. Always bigger or equal to the current time of the execution.
- Since:
- 1.380
 
- 
predictDeprecated.as of 1.380 Usepredict(MappingWorksheet, Computer, long, long)Estimates load starting from the 'start' timestamp, up to the 'end' timestamp.- Parameters:
- start- Where to start enumeration. Always bigger or equal to the current time of the execution.
 
- 
allAll the registered instances.
 
- 
predict(MappingWorksheet, Computer, long, long)