pub struct HadoopStepConfig {
pub args: Option<Vec<String>>,
pub jar: Option<String>,
pub main_class: Option<String>,
pub properties: Option<HashMap<String, String>>,
}
Expand description
A cluster step consisting of a JAR file whose main function will be executed. The main function submits a job for Hadoop to execute and waits for the job to finish or fail.
Fields§
§args: Option<Vec<String>>
The list of command line arguments to pass to the JAR file's main function for execution.
jar: Option<String>
The path to the JAR file that runs during the step.
main_class: Option<String>
The name of the main class in the specified Java file. If not specified, the JAR file should specify a main class in its manifest file.
properties: Option<HashMap<String, String>>
The list of Java properties that are set when the step runs. You can use these properties to pass key-value pairs to your main function.
Trait Implementations§
Source§impl Clone for HadoopStepConfig
impl Clone for HadoopStepConfig
Source§fn clone(&self) -> HadoopStepConfig
fn clone(&self) -> HadoopStepConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HadoopStepConfig
impl Debug for HadoopStepConfig
Source§impl Default for HadoopStepConfig
impl Default for HadoopStepConfig
Source§fn default() -> HadoopStepConfig
fn default() -> HadoopStepConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HadoopStepConfig
impl<'de> Deserialize<'de> for HadoopStepConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HadoopStepConfig
impl PartialEq for HadoopStepConfig
impl StructuralPartialEq for HadoopStepConfig
Auto Trait Implementations§
impl Freeze for HadoopStepConfig
impl RefUnwindSafe for HadoopStepConfig
impl Send for HadoopStepConfig
impl Sync for HadoopStepConfig
impl Unpin for HadoopStepConfig
impl UnwindSafe for HadoopStepConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more