Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
DROP PIPELINE
On this page
The DROP PIPELINE command deletes a pipeline from your SingleStore Helios cluster.
Syntax
DROP PIPELINE [IF EXISTS] pipeline_name;
Remarks
-
After a pipeline has been dropped, any data related to the pipeline will also be deleted from the
information_tables associated with the Pipelines feature.schema -
This command causes implicit commits.
Refer to COMMIT for more information. -
The background tasks of a pipeline runs in its resource pool.
Therefore, a resource pool used by a pipeline cannot be dropped. -
Refer to the Permissions Matrix for the required permissions.
Warning
If a pipeline is dropped and recreated, the pipeline will start reading from the earliest offset in the data source, once the pipeline is started.
Example
SHOW PIPELINES;
+-------------------------+---------+
| Pipelines_in_mydatabase | State |
+-------------------------+---------+
| quickstart_kafka | Running |
+-------------------------+---------+DROP PIPELINE quickstart_kafka;Query OK, 0 rows affected (0.00 sec)
SHOW PIPELINES;Empty set (0.00 sec)
Last modified: