File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,18 @@ Use an ingest node to pre-process documents before the actual document indexing
77The ingest node intercepts bulk and index requests, it applies transformations, and it then
88passes the documents back to the index or bulk APIs.
99
10- All nodes enable ingest by default, so any node can handle ingest tasks. You can also create
11- dedicated ingest nodes. To disable ingest for a node, configure the following setting in the
12- elasticsearch.yml file :
10+ All nodes enable ingest by default, so any node can handle ingest tasks. To
11+ create a dedicated ingest node, configure the <<modules-node,`node.roles`>>
12+ setting in ` elasticsearch.yml` as follows :
1313
1414[source,yaml]
1515----
1616node.roles: [ ingest ]
1717----
1818
19+ To disable ingest for a node, specify the `node.roles` setting and exclude
20+ `ingest` from the listed roles.
21+
1922To pre-process documents before indexing, <<pipeline,define a pipeline>> that specifies a series of
2023<<ingest-processors,processors>>. Each processor transforms the document in some specific way. For example, a
2124pipeline might have one processor that removes a field from the document, followed by
You can’t perform that action at this time.
0 commit comments