ingest: document index.default_pipeline (#34500)

This commit is contained in:
Jake Landis 2018-10-23 13:49:25 -05:00 committed by GitHub
parent 5a4866f67d
commit 067d135bfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -234,6 +234,13 @@ specific index module:
The length of time that a <<delete-versioning,deleted document's version number>> remains available for <<index-versioning,further versioned operations>>.
Defaults to `60s`.
`index.default_pipeline`::
The default <<ingest,ingest node>> pipeline for this index. Index requests will fail
if the default pipeline is set and the pipeline does not exist. The default may be
overridden using the `pipeline` parameter. The special pipeline name `_none` indicates
no ingest pipeline should be run.
[float]
=== Settings in other index modules

View File

@ -35,6 +35,9 @@ PUT my-index/_doc/my-id?pipeline=my_pipeline_id
// CONSOLE
// TEST[catch:bad_request]
An index may also declare a <<dynamic-index-settings,default pipeline>> that will be used in the
absence of the `pipeline` parameter.
See <<ingest-apis,Ingest APIs>> for more information about creating, adding, and deleting pipelines.
--