Module: Google::Cloud::Dataproc::V1::JobStatus::State

Defined in:
proto_docs/google/cloud/dataproc/v1/jobs.rb

Overview

The job state.

Constant Summary collapse

STATE_UNSPECIFIED =

The job state is unknown.

0
PENDING =

The job is pending; it has been submitted, but is not yet running.

1
SETUP_DONE =

Job has been received by the service and completed initial setup; it will soon be submitted to the cluster.

8
RUNNING =

The job is running on the cluster.

2
CANCEL_PENDING =

A CancelJob request has been received, but is pending.

3
CANCEL_STARTED =

Transient in-flight resources have been canceled, and the request to cancel the running job has been issued to the cluster.

7
CANCELLED =

The job cancellation was successful.

4
DONE =

The job has completed successfully.

5
ERROR =

The job has completed, but encountered an error.

6
ATTEMPT_FAILURE =

Job attempt has failed. The detail field contains failure details for this attempt.

Applies to restartable jobs only.

9