Google Cloud Dataproc v1 API - Class SparkJob (5.10.0)

public sealed class SparkJob : IMessage<SparkJob>, IEquatable<SparkJob>, IDeepCloneable<SparkJob>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Dataproc v1 API class SparkJob.

A Dataproc job for running Apache Spark applications on YARN.

Inheritance

object > SparkJob

Namespace

Google.Cloud.Dataproc.V1

Assembly

Google.Cloud.Dataproc.V1.dll

Constructors

SparkJob()

public SparkJob()

SparkJob(SparkJob)

public SparkJob(SparkJob other)
Parameter
NameDescription
otherSparkJob

Properties

ArchiveUris

public RepeatedField<string> ArchiveUris { get; }

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.

Property Value
TypeDescription
RepeatedFieldstring

Args

public RepeatedField<string> Args { get; }

Optional. The arguments to pass to the driver. Do not include arguments, such as --conf, that can be set as job properties, since a collision may occur that causes an incorrect job submission.

Property Value
TypeDescription
RepeatedFieldstring

DriverCase

public SparkJob.DriverOneofCase DriverCase { get; }
Property Value
TypeDescription
SparkJobDriverOneofCase

FileUris

public RepeatedField<string> FileUris { get; }

Optional. HCFS URIs of files to be placed in the working directory of each executor. Useful for naively parallel tasks.

Property Value
TypeDescription
RepeatedFieldstring

HasMainClass

public bool HasMainClass { get; }

Gets whether the "main_class" field is set

Property Value
TypeDescription
bool

HasMainJarFileUri

public bool HasMainJarFileUri { get; }

Gets whether the "main_jar_file_uri" field is set

Property Value
TypeDescription
bool

JarFileUris

public RepeatedField<string> JarFileUris { get; }

Optional. HCFS URIs of jar files to add to the CLASSPATHs of the Spark driver and tasks.

Property Value
TypeDescription
RepeatedFieldstring

LoggingConfig

public LoggingConfig LoggingConfig { get; set; }

Optional. The runtime log config for job execution.

Property Value
TypeDescription
LoggingConfig

MainClass

public string MainClass { get; set; }

The name of the driver's main class. The jar file that contains the class must be in the default CLASSPATH or specified in jar_file_uris.

Property Value
TypeDescription
string

MainJarFileUri

public string MainJarFileUri { get; set; }

The HCFS URI of the jar file that contains the main class.

Property Value
TypeDescription
string

Properties

public MapField<string, string> Properties { get; }

Optional. A mapping of property names to values, used to configure Spark. Properties that conflict with values set by the Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.

Property Value
TypeDescription
MapFieldstringstring