Struct gapi_grpc::google::cloud::dataproc::v1::SparkRJob[][src]

pub struct SparkRJob {
    pub main_r_file_uri: String,
    pub args: Vec<String>,
    pub file_uris: Vec<String>,
    pub archive_uris: Vec<String>,
    pub properties: HashMap<String, String>,
    pub logging_config: Option<LoggingConfig>,
}

A Dataproc job for running Apache SparkR applications on YARN.

Fields

main_r_file_uri: String

Required. The HCFS URI of the main R file to use as the driver. Must be a .R file.

args: Vec<String>

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.

file_uris: Vec<String>

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

archive_uris: Vec<String>

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.

properties: HashMap<String, String>

Optional. A mapping of property names to values, used to configure SparkR. 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.

logging_config: Option<LoggingConfig>

Optional. The runtime log config for job execution.

Trait Implementations

impl Clone for SparkRJob[src]

impl Debug for SparkRJob[src]

impl Default for SparkRJob[src]

impl Message for SparkRJob[src]

impl PartialEq<SparkRJob> for SparkRJob[src]

impl StructuralPartialEq for SparkRJob[src]

Auto Trait Implementations

impl RefUnwindSafe for SparkRJob

impl Send for SparkRJob

impl Sync for SparkRJob

impl Unpin for SparkRJob

impl UnwindSafe for SparkRJob

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]