mirror of
https://github.com/iSharkFly-Docs/opensearch-docs-cn
synced 2025-02-07 10:48:09 +00:00
8ed9a9505b
* more redirect fixes to index and ingest apis Signed-off-by: Heather Halter <hdhalter@amazon.com> * one more Signed-off-by: Heather Halter <hdhalter@amazon.com> --------- Signed-off-by: Heather Halter <hdhalter@amazon.com> Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com> Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
44 lines
759 B
Markdown
44 lines
759 B
Markdown
---
|
|
layout: default
|
|
title: Delete a pipeline
|
|
parent: Ingest APIs
|
|
nav_order: 14
|
|
redirect_from:
|
|
- /opensearch/rest-api/ingest-apis/delete-ingest/
|
|
---
|
|
|
|
# Delete a pipeline
|
|
|
|
If you no longer want to use an ingest pipeline, use the delete ingest pipeline API operation.
|
|
|
|
## Example
|
|
|
|
```
|
|
DELETE _ingest/pipeline/12345
|
|
```
|
|
{% include copy-curl.html %}
|
|
|
|
## Path and HTTP methods
|
|
|
|
Delete an ingest pipeline based on that pipeline's ID.
|
|
|
|
```
|
|
DELETE _ingest/pipeline/
|
|
```
|
|
|
|
## URL parameters
|
|
|
|
All URL parameters are optional.
|
|
|
|
Parameter | Type | Description
|
|
:--- | :--- | :---
|
|
master_timeout | time | How long to wait for a connection to the master node.
|
|
timeout | time | How long to wait for the request to return.
|
|
|
|
## Response
|
|
|
|
```json
|
|
{
|
|
"acknowledged" : true
|
|
}
|
|
``` |