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
7
7
The ingest node intercepts bulk and index requests, it applies transformations, and it then
8
8
passes the documents back to the index or bulk APIs.
9
9
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 :
13
13
14
14
[source,yaml]
15
15
----
16
16
node.roles: [ ingest ]
17
17
----
18
18
19
+ To disable ingest for a node, specify the `node.roles` setting and exclude
20
+ `ingest` from the listed roles.
21
+
19
22
To pre-process documents before indexing, <<pipeline,define a pipeline>> that specifies a series of
20
23
<<ingest-processors,processors>>. Each processor transforms the document in some specific way. For example, a
21
24
pipeline 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