Important
The SingleStore 9.1 release candidate (RC) is available now. It will be promoted to general availability (GA) soon and at that time it will be renamed to SingleStore 10.
In the interim, SingleStore 9.1 RC can be used to preview, evaluate, and provide feedback on the new and upcoming features in SingleStore 10, while SingleStore 9.0 is recommended for production workloads.
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: