 | SchedulerOptionsDataInputSchedulingMode Property |
Gets or sets a value indicating how the server will assign DFS input tasks to task servers.
Namespace: Ookii.Jumbo.Jet.JobsAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic SchedulingMode DataInputSchedulingMode { get; set; }
Public Property DataInputSchedulingMode As SchedulingMode
Get
Set
public:
property SchedulingMode DataInputSchedulingMode {
SchedulingMode get ();
void set (SchedulingMode value);
}
member DataInputSchedulingMode : SchedulingMode with get, set
Property Value
SchedulingMode
One of the values of the
SchedulingMode enumeration.
Remarks
When this property is set to MoreServers, the scheduler will prefer the server with the most available tasks, while
FewerServers means it will prefer the server with the fewest available tasks. Note that in either case, it will
still prefer a local task of a non-local one regardless of the number of available tasks.
When this property is set to OptimalLocality, the scheduler will attempt to schedule in a way that minimizes the
number of non-local tasks, without looking at the number of available tasks on the server.
See Also