[][src]Struct pachyderm::pps::PfsInput

pub struct PfsInput {
    pub name: String,
    pub repo: String,
    pub branch: String,
    pub commit: String,
    pub glob: String,
    pub join_on: String,
    pub lazy: bool,
    pub empty_files: bool,
    pub s3: bool,
}

Fields

name: Stringrepo: Stringbranch: Stringcommit: Stringglob: Stringjoin_on: Stringlazy: boolempty_files: bool

EmptyFiles, if true, will cause files from this PFS input to be presented as empty files. This is useful in shuffle pipelines where you want to read the names of files and reorganize them using symlinks.

s3: bool

S3, if true, will cause the worker to NOT download or link files from this input into the /pfs directory. Instead, an instance of our S3 gateway service will run on each of the sidecars, and data can be retrieved from this input by querying http://-s3././my/file

Trait Implementations

impl Clone for PfsInput[src]

impl Debug for PfsInput[src]

impl Default for PfsInput[src]

impl Message for PfsInput[src]

impl PartialEq<PfsInput> for PfsInput[src]

impl StructuralPartialEq for PfsInput[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> 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]