Skip to main content

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

USE exp_db; SHOW PIPELINES;
****
+------------------------+---------+-----------+
| Pipelines_exp_db       | State   | Scheduled |
+------------------------+---------+-----------+
| color_list             | Running | True      |
| color_list2            | Running | False     |
+------------------------+---------+-----------+