# CLEAR PIPELINE ERRORS

Removes most pipeline errors.&#x20;

This command is especially useful when a pipeline reaches its allocated storage space for errors, which causes the pipeline to pause. Errors stored in the active error file are still visible.

## Syntax

```sql
CLEAR PIPELINE ERRORS [FOR <pipeline_name>]
```

> **📝 Note**: Specifying the name of a pipeline with `CLEAR PIPELINE ERRORS` is optional. When `CLEAR PIPELINE ERRORS` is run without specifying a pipeline, errors for all the pipelines are removed.

## Argument

`pipeline_name` (Optional): Name of a pipeline.

## Remarks

* To increase the number of errors that can be stored, increase the value of the `ingest_errors_max_disk_space_mb` engine variable.
* Query the `information_schema.PIPELINES_ERRORS` view to view the pipeline errors. For example:
  ```sql
  SELECT * FROM information_schema.PIPELINES_ERRORS;
  ```

## Examples

```sql
CLEAR PIPELINE ERRORS;
```

```sql
START PIPELINE books;

CLEAR PIPELINE ERRORS FOR books;
```

***

Modified at: October 27, 2025

Source: [/cloud/reference/sql-reference/pipelines-commands/clear-pipeline-errors/](https://docs.singlestore.com/cloud/reference/sql-reference/pipelines-commands/clear-pipeline-errors/)

(An index of the documentation is available at /llms.txt)
