ops pipeline
Pipeline management commands for listing, inspecting, triggering, and cancelling pipeline runs across the portfolio.
ops pipeline is the cross-project, vendor-agnostic interface. For Prefect-specific operations (flow runs, deployments), see ops prefect.
Subcommands
| Subcommand | Description |
|---|---|
list | List pipelines across all projects |
status | Get status of a specific pipeline deployment |
trigger | Trigger a pipeline run |
cancel | Cancel a running pipeline |
ops pipeline list
Enumerate every pipeline registered across the portfolio.
Flags
| Flag | Type | Description |
|---|---|---|
--failed | flag | Show only pipelines in a failed state |
Examples
ops pipeline list --failed is the fastest way to see what needs attention right now. Empty output means everything is green.
ops pipeline status
Get a detailed status report for a specific pipeline deployment, including recent runs, failure history, and current state.
ops pipeline trigger
Manually trigger a pipeline run outside of its normal schedule. Useful for re-running after a fix or backfilling data.
Triggering a pipeline can write data to production tables. Confirm the deployment id and target environment before running.
ops pipeline cancel
Cancel a running pipeline. Use this when you've spotted a bad input or want to stop a long-running flow before it consumes more resources.