Share via


JobManagerTask.RunExclusive Property

Definition

Gets or sets whether the Job Manager Task requires exclusive use of the Compute Node where it runs.

[Newtonsoft.Json.JsonProperty(PropertyName="runExclusive")]
public bool? RunExclusive { get; set; }
[<Newtonsoft.Json.JsonProperty(PropertyName="runExclusive")>]
member this.RunExclusive : Nullable<bool> with get, set
Public Property RunExclusive As Nullable(Of Boolean)

Property Value

Attributes
Newtonsoft.Json.JsonPropertyAttribute

Remarks

If true, no other Tasks will run on the same Node for as long as the Job Manager is running. If false, other Tasks can run simultaneously with the Job Manager on a Compute Node. The Job Manager Task counts normally against the Compute Node's concurrent Task limit, so this is only relevant if the Compute Node allows multiple concurrent Tasks. The default value is true.

Applies to