SparkSqlBatchResponse

data class SparkSqlBatchResponse(val jarFileUris: List<String>, val queryFileUri: String, val queryVariables: Map<String, String>)

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

Constructors

Link copied to clipboard
fun SparkSqlBatchResponse(jarFileUris: List<String>, queryFileUri: String, queryVariables: Map<String, String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

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