Cli
Pipeline CLI
CLI reference for Pipeline
Pipeline CLI
A data ingestion and transformation service that processes streaming events with SQL and delivers them to object storage in analytics-ready formats.
Commands
create
Create a new data pipeline.
do pipeline create [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
delete
Permanently remove the pipeline.
do pipeline delete [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
start
Start processing events through the pipeline.
do pipeline start [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
pause
Temporarily stop processing events.
do pipeline pause [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
resume
Resume a paused pipeline.
do pipeline resume [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
stop
Stop the pipeline and flush remaining events.
do pipeline stop [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
ingest
Send an event to the pipeline for processing.
do pipeline ingest [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
transform
Update the SQL transformation query.
do pipeline transform [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
monitor
Get pipeline metrics (throughput, errors, latency).
do pipeline monitor [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
logs
Retrieve pipeline execution logs.
do pipeline logs [options]Options:
--help- Show help--json- Output as JSON--quiet- Suppress output
Examples
# create
do pipeline create
# With JSON output
do pipeline create --json
# Quiet mode
do pipeline create --quiet