Job Sparksql Config Args
data class JobSparksqlConfigArgs(val jarFileUris: Output<List<String>>? = null, val loggingConfig: Output<JobSparksqlConfigLoggingConfigArgs>? = null, val properties: Output<Map<String, String>>? = null, val queryFileUri: Output<String>? = null, val queryLists: Output<List<String>>? = null, val scriptVariables: Output<Map<String, String>>? = null) : ConvertibleToJava<JobSparksqlConfigArgs>
Constructors
Link copied to clipboard
constructor(jarFileUris: Output<List<String>>? = null, loggingConfig: Output<JobSparksqlConfigLoggingConfigArgs>? = null, properties: Output<Map<String, String>>? = null, queryFileUri: Output<String>? = null, queryLists: Output<List<String>>? = null, scriptVariables: Output<Map<String, String>>? = null)
Properties
Link copied to clipboard
HCFS URIs of jar files to be added to the Spark CLASSPATH.
Link copied to clipboard
Link copied to clipboard
A mapping of property names to values, used to configure Spark SQL's SparkConf. Properties that conflict with values set by the Cloud Dataproc API may be overwritten.
Link copied to clipboard
The HCFS URI of the script that contains SQL queries. Conflicts with query_list
Link copied to clipboard
The list of SQL queries or statements to execute as part of the job. Conflicts with query_file_uri
Link copied to clipboard
Mapping of query variable names to values (equivalent to the Spark SQL command: SET name="value";
).