Repository
object is where to start from.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=...)
.runs
attribute of a pipeline. Or, you can query a specific run by run name using the get_run(run_name=...)
method:pipeline.runs
can currently be very slow when using remote metadata stores as all run data need to be transferred from the cloud to the local machine.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.output
attributeoutputs
attribute, which is a dictionary that can be indexed using the name of an output:Output
typing of your steps: