Skip to content

Commit 20fc597

Browse files
committed
[DOCS] Fix instructions for dedicated ingest node (elastic#69179)
1 parent e6ecfcd commit 20fc597

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/reference/ingest.asciidoc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,18 @@ Use an ingest node to pre-process documents before the actual document indexing
77
The ingest node intercepts bulk and index requests, it applies transformations, and it then
88
passes 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
----
1616
node.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+
1922
To 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
2124
pipeline might have one processor that removes a field from the document, followed by

0 commit comments

Comments
 (0)