SHOW PIPELINES
On this page
You can see all existing pipelines in a database and their current state by using the SHOW PIPELINES
statement.
Possible states are Running
, Testing
, Profiling
, Running.
, Stopped
, and Error
, and they are described in the Pipelines Information Schema Tables topic.
Background pipelines will show True in the Scheduled column until the task is finished.
Non-background pipelines will always show False in the Scheduled column.
Syntax
SHOW PIPELINES
Example
SHOW PIPELINES;
+------------------------+---------+-----------+
| Pipelines_exp_db | State | Scheduled |
+------------------------+---------+-----------+
| color_list | Running | True |
| color_list2 | Running | False |
+------------------------+---------+-----------+
Related Topics
Last modified: September 24, 2024