Pool.DefinitionStages.WithTaskSlotsPerNode Interface

public static interface Pool.DefinitionStages.WithTaskSlotsPerNode

The stage of the Pool definition allowing to specify taskSlotsPerNode.

Method Summary

Modifier and Type Method and Description
abstract WithCreate withTaskSlotsPerNode(Integer taskSlotsPerNode)

Specifies the taskSlotsPerNode property: The number of task slots that can be used to run concurrent tasks on a single compute node in the pool.

Method Details

withTaskSlotsPerNode

public abstract Pool.DefinitionStages.WithCreate withTaskSlotsPerNode(Integer taskSlotsPerNode)

Specifies the taskSlotsPerNode property: The number of task slots that can be used to run concurrent tasks on a single compute node in the pool. The default value is 1. The maximum value is the smaller of 4 times the number of cores of the vmSize of the pool or 256..

Parameters:

taskSlotsPerNode - The number of task slots that can be used to run concurrent tasks on a single compute node in the pool. The default value is 1. The maximum value is the smaller of 4 times the number of cores of the vmSize of the pool or 256.

Returns:

the next definition stage.

Applies to