Enum PipelineFailurePolicy (3.42.0)

public enum PipelineFailurePolicy extends Enum<PipelineFailurePolicy> implements ProtocolMessageEnum

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.

Protobuf enum google.cloud.aiplatform.v1.PipelineFailurePolicy

Implements

ProtocolMessageEnum

Static Fields

NameDescription
PIPELINE_FAILURE_POLICY_FAIL_FAST

Indicates that the pipeline should stop scheduling new tasks after a task has failed.

PIPELINE_FAILURE_POLICY_FAIL_FAST = 2;

PIPELINE_FAILURE_POLICY_FAIL_FAST_VALUE

Indicates that the pipeline should stop scheduling new tasks after a task has failed.

PIPELINE_FAILURE_POLICY_FAIL_FAST = 2;

PIPELINE_FAILURE_POLICY_FAIL_SLOW

Indicates that the pipeline should continue to run until all possible tasks have been scheduled and completed.

PIPELINE_FAILURE_POLICY_FAIL_SLOW = 1;

PIPELINE_FAILURE_POLICY_FAIL_SLOW_VALUE

Indicates that the pipeline should continue to run until all possible tasks have been scheduled and completed.

PIPELINE_FAILURE_POLICY_FAIL_SLOW = 1;

PIPELINE_FAILURE_POLICY_UNSPECIFIED

Default value, and follows fail slow behavior.

PIPELINE_FAILURE_POLICY_UNSPECIFIED = 0;

PIPELINE_FAILURE_POLICY_UNSPECIFIED_VALUE

Default value, and follows fail slow behavior.

PIPELINE_FAILURE_POLICY_UNSPECIFIED = 0;

UNRECOGNIZED

Static Methods

NameDescription
forNumber(int value)
getDescriptor()
internalGetValueMap()
valueOf(Descriptors.EnumValueDescriptor desc)
valueOf(int value)

Deprecated. Use #forNumber(int) instead.

valueOf(String name)
values()

Methods

NameDescription
getDescriptorForType()
getNumber()
getValueDescriptor()