Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SparkConnectExecutionInfo

import type { SparkConnectExecutionInfo } from "https://googleapis.deno.dev/v1/dataproc:v1.ts";

Represents the lifecycle and details of an Execution via Spark Connect

interface SparkConnectExecutionInfo {
closeTimestamp?: bigint;
detail?: string;
finishTimestamp?: bigint;
jobIds?: string[];
jobTag?: string;
operationId?: string;
sessionId?: string;
sparkSessionTags?: string[];
sqlExecIds?: string[];
startTimestamp?: bigint;
readonly state?:
| "EXECUTION_STATE_UNKNOWN"
| "EXECUTION_STATE_STARTED"
| "EXECUTION_STATE_COMPILED"
| "EXECUTION_STATE_READY"
| "EXECUTION_STATE_CANCELED"
| "EXECUTION_STATE_FAILED"
| "EXECUTION_STATE_FINISHED"
| "EXECUTION_STATE_CLOSED";
statement?: string;
userId?: string;
}

§Properties

§
closeTimestamp?: bigint
[src]

Timestamp when the execution was closed.

§
detail?: string
[src]

Detailed information about the execution.

§
finishTimestamp?: bigint
[src]

Timestamp when the execution finished.

§
jobIds?: string[]
[src]

Optional. List of job ids associated with the execution.

§
jobTag?: string
[src]

Required. Job tag of the execution.

§
operationId?: string
[src]

Unique identifier for the operation.

§
sessionId?: string
[src]

Required. Session ID, ties the execution to a specific Spark Connect session.

§
sparkSessionTags?: string[]
[src]

Optional. Tags associated with the Spark session.

§
sqlExecIds?: string[]
[src]

Optional. List of sql execution ids associated with the execution.

§
startTimestamp?: bigint
[src]

Timestamp when the execution started.

§
readonly state?: "EXECUTION_STATE_UNKNOWN" | "EXECUTION_STATE_STARTED" | "EXECUTION_STATE_COMPILED" | "EXECUTION_STATE_READY" | "EXECUTION_STATE_CANCELED" | "EXECUTION_STATE_FAILED" | "EXECUTION_STATE_FINISHED" | "EXECUTION_STATE_CLOSED"
[src]

Output only. Current state of the execution.

§
statement?: string
[src]

statement of the execution.

§
userId?: string
[src]

User ID of the user who started the execution.