Interface ServiceSpecModeReplicatedJob

The mode used for services with a finite number of tasks that run to a completed state. ServiceSpecModeReplicatedJob

interface ServiceSpecModeReplicatedJob {
    MaxConcurrent?: number;
    TotalCompletions?: number;
}

Properties

MaxConcurrent?: number

The maximum number of replicas to run simultaneously.

TotalCompletions?: number

The total number of replicas desired to reach the Completed state. If unset, will default to the value of MaxConcurrent