forked from pelias/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set default bulk queue size for ES 2.4 image
Similar to pelias#71, its helpful to set the bulk import queue size to much larger than the default (50 for ES 2.4). Without this setting, imports when running multiple importers can easily overwhelm Elasticsearch and fail.
- Loading branch information
1 parent
140652e
commit a4ced92
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
bootstrap.memory_lock: true | ||
network.host: 0.0.0.0 | ||
http.port: 9200 | ||
node.master: true | ||
node.data: true | ||
threadpool: | ||
bulk: | ||
queue_size: 1000 |