Important
The SingleStore 9.1 release candidate (RC) gives you the opportunity to preview, evaluate, and provide feedback on new and upcoming features prior to their general availability. In the interim, SingleStore 9.0 is recommended for production workloads, which can later be upgraded to SingleStore 9.1.
CLEAR PIPELINE ERRORS
On this page
Removes most pipeline errors.
This command is especially useful when a pipeline reaches its allocated storage space for errors, which causes the pipeline to pause.
Syntax
CLEAR PIPELINE ERRORS [FOR <pipeline_name>]
Note
Specifying the name of a pipeline with CLEAR PIPELINE ERRORS is optional.CLEAR PIPELINE ERRORS is run without specifying a pipeline, errors for all the pipelines are removed.
Argument
pipeline_ (Optional): Name of a pipeline.
Remarks
-
To increase the number of errors that can be stored, increase the value of the
ingest_engine variable.errors_ max_ disk_ space_ mb -
Query the
information_view to view the pipeline errors.schema. PIPELINES_ ERRORS For example: SELECT * FROM information_schema.PIPELINES_ERRORS;
Examples
CLEAR PIPELINE ERRORS;
START PIPELINE books;CLEAR PIPELINE ERRORS FOR books;
Last modified: October 27, 2025