Verify Pipeline Success
Query the pipelines_
information schema view to inspect the progress of the pipelines.tpch_
pipeline has finished ingesting data.
SELECT * FROM information_schema.pipelines_filesWHERE pipeline_name = "tpch_100_lineitem";
You can also run the pipelines in foreground to easily verify that all the data has been ingested.
START PIPELINE <pipeline_name> FOREGROUND;
Last modified: October 17, 2024