Class SparkBatch
A configuration for running an Apache Spark (https://spark.apache.org/) batch workload.
Implements
Inherited Members
Namespace: Google.Apis.Dataproc.v1.Data
Assembly: Google.Apis.Dataproc.v1.dll
Syntax
public class SparkBatch : IDirectResponseSchema
Properties
ArchiveUris
Optional. HCFS URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
Declaration
[JsonProperty("archiveUris")]
public virtual IList<string> ArchiveUris { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
Args
Optional. The arguments to pass to the driver. Do not include arguments that can be set as batch properties, such as --conf, since a collision can occur that causes an incorrect batch submission.
Declaration
[JsonProperty("args")]
public virtual IList<string> Args { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FileUris
Optional. HCFS URIs of files to be placed in the working directory of each executor.
Declaration
[JsonProperty("fileUris")]
public virtual IList<string> FileUris { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
JarFileUris
Optional. HCFS URIs of jar files to add to the classpath of the Spark driver and tasks.
Declaration
[JsonProperty("jarFileUris")]
public virtual IList<string> JarFileUris { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
MainClass
Optional. The name of the driver main class. The jar file that contains the class must be in the classpath or specified in jar_file_uris.
Declaration
[JsonProperty("mainClass")]
public virtual string MainClass { get; set; }
Property Value
Type | Description |
---|---|
string |
MainJarFileUri
Optional. The HCFS URI of the jar file that contains the main class.
Declaration
[JsonProperty("mainJarFileUri")]
public virtual string MainJarFileUri { get; set; }
Property Value
Type | Description |
---|---|
string |