[][src]Struct gcp_client::google::cloud::dataproc::v1beta2::HiveJob

pub struct HiveJob {
    pub continue_on_failure: bool,
    pub script_variables: HashMap<String, String>,
    pub properties: HashMap<String, String>,
    pub jar_file_uris: Vec<String>,
    pub queries: Option<Queries>,
}

A Dataproc job for running Apache Hive queries on YARN.

Fields

continue_on_failure: bool

Optional. Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries.

script_variables: HashMap<String, String>

Optional. Mapping of query variable names to values (equivalent to the Hive command: SET name="value";).

properties: HashMap<String, String>

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

jar_file_uris: Vec<String>

Optional. HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.

queries: Option<Queries>

Required. The sequence of Hive queries to execute, specified as either an HCFS file URI or a list of queries.

Trait Implementations

impl Clone for HiveJob[src]

impl Debug for HiveJob[src]

impl Default for HiveJob[src]

impl Message for HiveJob[src]

impl PartialEq<HiveJob> for HiveJob[src]

impl StructuralPartialEq for HiveJob[src]

Auto Trait Implementations

impl RefUnwindSafe for HiveJob

impl Send for HiveJob

impl Sync for HiveJob

impl Unpin for HiveJob

impl UnwindSafe for HiveJob

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, 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>, 

impl<T> WithSubscriber for T[src]