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

SparkSqlBatch

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

A configuration for running Apache Spark SQL (https://spark.apache.org/sql/) queries as a batch workload.

interface SparkSqlBatch {
jarFileUris?: string[];
queryFileUri?: string;
queryVariables?: {
[key: string]: string;
}
;
}

§Properties

§
jarFileUris?: string[]
[src]

Optional. HCFS URIs of jar files to be added to the Spark CLASSPATH.

§
queryFileUri?: string
[src]

Required. The HCFS URI of the script that contains Spark SQL queries to execute.

§
queryVariables?: {
[key: string]: string;
}
[src]

Optional. Mapping of query variable names to values (equivalent to the Spark SQL command: SET name="value";).