[][src]Struct pachyderm::pps::CreatePipelineRequest

pub struct CreatePipelineRequest {
    pub pipeline: Option<Pipeline>,
    pub tf_job: Option<TfJob>,
    pub transform: Option<Transform>,
    pub parallelism_spec: Option<ParallelismSpec>,
    pub hashtree_spec: Option<HashtreeSpec>,
    pub egress: Option<Egress>,
    pub update: bool,
    pub output_branch: String,
    pub s3_out: bool,
    pub resource_requests: Option<ResourceSpec>,
    pub resource_limits: Option<ResourceSpec>,
    pub sidecar_resource_limits: Option<ResourceSpec>,
    pub input: Option<Input>,
    pub description: String,
    pub cache_size: String,
    pub enable_stats: bool,
    pub reprocess: bool,
    pub max_queue_size: i64,
    pub service: Option<Service>,
    pub spout: Option<Spout>,
    pub chunk_spec: Option<ChunkSpec>,
    pub datum_timeout: Option<Duration>,
    pub job_timeout: Option<Duration>,
    pub salt: String,
    pub standby: bool,
    pub datum_tries: i64,
    pub scheduling_spec: Option<SchedulingSpec>,
    pub pod_spec: String,
    pub pod_patch: String,
    pub spec_commit: Option<Commit>,
    pub metadata: Option<Metadata>,
}

Fields

pipeline: Option<Pipeline>tf_job: Option<TfJob>

tf_job encodes a Kubeflow TFJob spec. Pachyderm uses this to create TFJobs when running in a kubernetes cluster on which kubeflow has been installed. Exactly one of 'tf_job' and 'transform' should be set

transform: Option<Transform>parallelism_spec: Option<ParallelismSpec>hashtree_spec: Option<HashtreeSpec>egress: Option<Egress>update: booloutput_branch: Strings3_out: bool

s3_out, if set, requires a pipeline's user to write to its output repo via Pachyderm's s3 gateway (if set, workers will serve Pachyderm's s3 gateway API at http://-s3./.out/my/file). In this mode /pfs/out won't be walked or uploaded, and the s3 gateway service in the workers will allow writes to the job's output commit

resource_requests: Option<ResourceSpec>resource_limits: Option<ResourceSpec>sidecar_resource_limits: Option<ResourceSpec>input: Option<Input>description: Stringcache_size: Stringenable_stats: boolreprocess: bool

Reprocess forces the pipeline to reprocess all datums. It only has meaning if Update is true

max_queue_size: i64service: Option<Service>spout: Option<Spout>chunk_spec: Option<ChunkSpec>datum_timeout: Option<Duration>job_timeout: Option<Duration>salt: Stringstandby: booldatum_tries: i64scheduling_spec: Option<SchedulingSpec>pod_spec: String

deprecated, use pod_patch below

pod_patch: String

a json patch will be applied to the pipeline's pod_spec before it's created;

spec_commit: Option<Commit>metadata: Option<Metadata>

Trait Implementations

impl Clone for CreatePipelineRequest[src]

impl Debug for CreatePipelineRequest[src]

impl Default for CreatePipelineRequest[src]

impl Message for CreatePipelineRequest[src]

impl PartialEq<CreatePipelineRequest> for CreatePipelineRequest[src]

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