Verify the Pipeline Success
Query the pipelines_
information schema view to inspect the progress of the pipelines.worldcities
pipeline has finished ingesting data.
SELECT * FROM information_schema.pipelines_filesWHERE pipeline_name = "worldcities";
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 10, 2024