StageAttemptTasksSummary
import type { StageAttemptTasksSummary } from "https://googleapis.deno.dev/v1/dataproc:v1.ts";
Data related to tasks summary for a Spark Stage Attempt
interface StageAttemptTasksSummary {
applicationId?: string;
numFailedTasks?: number;
numKilledTasks?: number;
numPendingTasks?: number;
numRunningTasks?: number;
numSuccessTasks?: number;
numTasks?: number;
stageAttemptId?: number;
stageId?: bigint;
}