  | SchedulingMode Enumeration | 
 
            Indicates how the scheduler should assign tasks to servers.
            
 
    Namespace: 
   Ookii.Jumbo.Jet
    Assembly:
   Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntaxpublic enum SchedulingMode
Public Enumeration SchedulingMode
public enum class SchedulingMode
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Default | 0 | 
            The scheduler will use the job server's default scheduling mode.
             | 
 | MoreServers | 1 | 
            The scheduler will attempt to spread the workload over as many servers as possible.
             | 
 | FewerServers | 2 | 
            The scheduler will attempt to use as few servers as possible
             | 
 | OptimalLocality | 3 | 
            The scheduler will attempt to minimize the number of non-local tasks. This value is not valid for tasks that do not read data input.
             | 
See Also