Struct google_dataproc1::api::SparkRJob[][src]

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

A Dataproc job for running Apache SparkR (https://spark.apache.org/docs/latest/sparkr.html) applications on YARN.

This type is not used in any activity, and only used as part of another schema.

Fields

archive_uris: Option<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.

args: Option<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: Option<Vec<String>>

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

logging_config: Option<LoggingConfig>

Optional. The runtime log config for job execution.

main_r_file_uri: Option<String>

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

properties: Option<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.

Trait Implementations

impl Clone for SparkRJob[src]

impl Debug for SparkRJob[src]

impl Default for SparkRJob[src]

impl<'de> Deserialize<'de> for SparkRJob[src]

impl Part for SparkRJob[src]

impl Serialize for SparkRJob[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.