How to inspect a finished pipeline run
get_pipelines()
method or query a specific pipeline by name using get_pipeline(pipeline=...)
:
-1
, due to the fact that the pipelines are sorted
by time of first run. Instead, it is recommended to access the pipeline
using the pipeline class, an instance of the class or even the name of the
pipeline as a string: get_pipeline(pipeline=...)
.Using the CLI
runs
attribute of a pipeline.
get_run(run_name=...)
:
Using the CLI
pipeline_configuration
is a super object that contains all configuration of the pipeline and pipeline run, including pipeline-level BaseSettings, which we will learn more about later. You can also access the settings directly via the settings
variable.
steps
attribute or by querying a specific step using the get_step(step=...)
method.
name
refers to the pipeline attribute and not the class name of the
steps that implement the step for a pipeline instance.get_step(step=...)
instead.step
object to access:
step.parameters
: The parameters used to run the step.step.step_configuration
output
attributeoutputs
attribute, which is a dictionary that can be indexed using the name of an output:Output
typing of your steps: