Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
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: