ComputeNodeRebootOption Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies when to reboot a compute node and what to do with currently running tasks.
public enum ComputeNodeRebootOption
type ComputeNodeRebootOption =
Public Enum ComputeNodeRebootOption
- Inheritance
-
ComputeNodeRebootOption
Fields
Name | Value | Description |
---|---|---|
Requeue | 0 | Terminate running tasks and requeue them. The tasks will run again when the job is enabled. Restart the compute node as soon as tasks have been terminated. |
Terminate | 1 | Terminate running tasks. The tasks will not run again. Restart the compute node as soon as tasks have been terminated. |
TaskCompletion | 2 | Allow currently running tasks to complete. Schedule no new tasks while waiting. Restart the compute node when all tasks have completed. |
RetainedData | 3 | Allow currently running tasks to complete, then wait for all task data retention periods to expire. Schedule no new tasks while waiting. Restart the compute node when all task retention periods have expired. |