Watch the 7.3 Webinar On-Demand
This new release brings updates to Universal Storage, query
optimization, and usability that you won’t want to miss.
You can see all existing pipelines in a database and their current state by using the SHOW PIPELINES
statement. Possible states are Running
, Stopped
, and Error
, and they are described in the Pipelines Information Schema Tables topic.
SHOW PIPELINES
USE mydb; SHOW PIPELINES;
+-------------------+---------+
| Pipelines_in_mydb | State |
+-------------------+---------+
| mypipeline | Running |
| myotherpipeline | Stopped |
+-------------------+---------+
2 rows in set (0.00 sec)