tfx.v1.dsl.Pipeline

Logical TFX pipeline object.

Inherits From: BaseNode

Used in the notebooks

Used in the tutorials

Pipeline object represents the DAG of TFX components, which can be run using one of the pipeline orchestration systems that TFX supports. For details, please refer to the guide.

pipeline_name Name of the pipeline;
pipeline_root Path to root directory of the pipeline. This will most often be just a string. Some orchestrators may have limited support for constructing this from a Placeholder, e.g. a RuntimeInfoPlaceholder that refers to fields from the platform config. pipeline_root is optional only if the pipeline is composed within another parent pipeline, in which case it will inherit its parent pipeline's root.
metadata_connection_config The config to connect to ML metadata.
components Optional list of components to construct the pipeline.
enable_cache Whether or not cache is enabled for this run.
beam_pipeline_args Pipeline arguments for Beam powered Components.
platform_config Pipeline level platform config, in proto form.
execution_mode The execution mode of the pipeline, can be SYNC or ASYNC.
inputs Optional inputs of a pipeline.
outputs Optional outputs of a pipeline.
**kwargs Additional kwargs forwarded as pipeline args.

components A deterministic list of logical components of this pipeline, which are deduped and topologically sorted.
enable_cache Whether or not cache is enabled for this run.
metadata_connection_config The config to connect to ML metadata.
execution_mode Execution mode of the pipeline. Currently only support synchronous execution mode.
beam_pipeline_args Pipeline arguments for Beam powered Components. Use with_beam_pipeline_args to set component level Beam args.
platform_config Pipeline level platform config, in proto form.
exec_properties

inputs

outputs