Class SparkSqlBatch
A configuration for running Apache Spark SQL (https://spark.apache.org/sql/) queries as a batch workload.
Implements
Inherited Members
Namespace: Google.Apis.Dataproc.v1.Data
Assembly: Google.Apis.Dataproc.v1.dll
Syntax
public class SparkSqlBatch : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
JarFileUris
Optional. HCFS URIs of jar files to be added to the Spark CLASSPATH.
Declaration
[JsonProperty("jarFileUris")]
public virtual IList<string> JarFileUris { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
QueryFileUri
Required. The HCFS URI of the script that contains Spark SQL queries to execute.
Declaration
[JsonProperty("queryFileUri")]
public virtual string QueryFileUri { get; set; }
Property Value
Type | Description |
---|---|
string |
QueryVariables
Optional. Mapping of query variable names to values (equivalent to the Spark SQL command: SET name="value";).
Declaration
[JsonProperty("queryVariables")]
public virtual IDictionary<string, string> QueryVariables { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |