Outdated Version
You are viewing an older version of this section. View current production version.
SHOW PIPELINES
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.
Syntax
SHOW PIPELINES
Example
memsql> USE mydb; SHOW PIPELINES;
+-------------------+---------+
| Pipelines_in_mydb | State |
+-------------------+---------+
| mypipeline | Running |
| myotherpipeline | Stopped |
+-------------------+---------+
2 rows in set (0.00 sec)