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 mydb; SHOW PIPELINES; +-------------------+---------+ | Pipelines_in_mydb | State | +-------------------+---------+ | mypipeline | Running | | myotherpipeline | Stopped | +-------------------+---------+ 2 rows in set (0.00 sec)