Outdated Version
You are viewing an older version of this section. View current production version.
STOP PIPELINE
The STOP PIPELINE statement stops a currently running pipeline in a SingleStore database.
Syntax
STOP PIPELINE [IF RUNNING] pipeline_name [DETACH];
STOP ALL PIPELINES;
Remarks
- An error will occur if the pipeline isn’t already running, unless
IF RUNNINGis specified, in which case the command is ignored. - To stop all pipelines in the current database, run
STOP ALL PIPELINES. - Use the
DETACHoption to temporarily stop a pipeline, without losing offsets, for performing anALTERon the table that is loaded from an Avro pipeline. See Avro Schema Evolution with Pipelines for details.
Example
STOP PIPELINE mypipeline;
To verify that the pipeline was successfully stopped, you can execute SHOW PIPELINES:
SHOW PIPELINES;
****
+-------------------+---------+
| Pipelines_in_mydb | State |
+-------------------+---------+
| mypipeline | Stopped |
+-------------------+---------+