Spark Sql Batch Args
data class SparkSqlBatchArgs(val jarFileUris: Output<List<String>>? = null, val queryFileUri: Output<String>, val queryVariables: Output<Map<String, String>>? = null) : ConvertibleToJava<SparkSqlBatchArgs>
A configuration for running Apache Spark SQL (https://spark.apache.org/sql/) queries as a batch workload.
Constructors
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";).