public enum PipelineFailurePolicy
Reference documentation and code samples for the Cloud AI Platform v1beta1 API enum PipelineFailurePolicy.
Represents the failure policy of a pipeline. Currently, the default of a pipeline is that the pipeline will continue to run until no more tasks can be executed, also known as PIPELINE_FAILURE_POLICY_FAIL_SLOW. However, if a pipeline is set to PIPELINE_FAILURE_POLICY_FAIL_FAST, it will stop scheduling any new tasks when a task has failed. Any scheduled tasks will continue to completion.
Namespace
Google.Cloud.AIPlatform.V1Beta1Assembly
Google.Cloud.AIPlatform.V1Beta1.dll
Fields |
|
---|---|
Name | Description |
FailFast |
Indicates that the pipeline should stop scheduling new tasks after a task has failed. |
FailSlow |
Indicates that the pipeline should continue to run until all possible tasks have been scheduled and completed. |
Unspecified |
Default value, and follows fail slow behavior. |