Class YarnApplication (5.9.3)

YarnApplication(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A YARN application created by a job. Application information is a subset of org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto.

Beta Feature: This report is available for testing purposes only. It may be changed before final release.

Attributes

NameDescription
name str
Required. The application name.
state google.cloud.dataproc_v1.types.YarnApplication.State
Required. The application state.
progress float
Required. The numerical progress of the application, from 1 to 100.
tracking_url str
Optional. The HTTP URL of the ApplicationMaster, HistoryServer, or TimelineServer that provides application-specific information. The URL uses the internal hostname, and requires a proxy server for resolution and, possibly, access.

Classes

State

State(value)

The application state, corresponding to YarnProtos.YarnApplicationStateProto.

Values: STATE_UNSPECIFIED (0): Status is unspecified. NEW (1): Status is NEW. NEW_SAVING (2): Status is NEW_SAVING. SUBMITTED (3): Status is SUBMITTED. ACCEPTED (4): Status is ACCEPTED. RUNNING (5): Status is RUNNING. FINISHED (6): Status is FINISHED. FAILED (7): Status is FAILED. KILLED (8): Status is KILLED.