YarnApplication
import type { YarnApplication } from "https://googleapis.deno.dev/v1/dataproc:v1.ts";
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.
interface YarnApplication {
memoryMbSeconds?: bigint;
name?: string;
progress?: number;
state?:
| "STATE_UNSPECIFIED"
| "NEW"
| "NEW_SAVING"
| "SUBMITTED"
| "ACCEPTED"
| "RUNNING"
| "FINISHED"
| "FAILED"
| "KILLED";
trackingUrl?: string;
vcoreSeconds?: bigint;
}§Properties
§
memoryMbSeconds?: bigint
[src]Optional. The cumulative memory usage of the application for a job, measured in mb-seconds.
§
state?: "STATE_UNSPECIFIED" | "NEW" | "NEW_SAVING" | "SUBMITTED" | "ACCEPTED" | "RUNNING" | "FINISHED" | "FAILED" | "KILLED"
[src]Required. The application state.