Verify Pipeline Success
The entire loading process takes around four minutes, but you do not need to wait for Pipelines to finish before querying.
If you want to know whether the pipeline has finished loading, you can check the progress of a pipeline via the pipelines_
Information Schema table.
SELECT * FROM information_schema.pipelines_files WHERE pipeline_name = "tpch_100_lineitem";
You can also run your pipeline in the foreground, which makes it easy to verify that all the data has been loaded:
START PIPELINE <pipeline_name> FOREGROUND;
On the next page, we will show you how to get business-critical metrics.
Last modified: January 5, 2022