Skip to content

Commit 9a77308

Browse files
committed
Change
1 parent 43c418f commit 9a77308

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/reference/elasticsearch/configuration-reference/thread-pool-settings.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ $$$search-throttled$$$`search_throttled`
7171
`system_write`
7272
: For write operations on system indices. Thread pool type is `fixed` with a default maximum size of `min(5, (`[`# of allocated processors`](#node.processors)`) / 2)`.
7373

74+
`system_write_coordination`
75+
: For bulk request coordination operations on system indices. Thread pool type is `fixed` with a default maximum size of `min(5, (`[`# of allocated processors`](#node.processors)`) / 2)`.
76+
7477
`system_critical_read`
7578
: For critical read operations on system indices. Thread pool type is `fixed` with a default maximum size of `min(5, (`[`# of allocated processors`](#node.processors)`) / 2)`.
7679

server/src/main/java/org/elasticsearch/threadpool/DefaultBuiltInExecutorBuilders.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public Map<String, ExecutorBuilder> getBuilders(Settings settings, int allocated
206206
ThreadPool.Names.SYSTEM_WRITE_COORDINATION,
207207
halfProcMaxAt5,
208208
1000,
209-
new EsExecutors.TaskTrackingConfig(true, indexAutoscalingEWMA),
209+
EsExecutors.TaskTrackingConfig.DO_NOT_TRACK,
210210
true
211211
)
212212
);

0 commit comments

Comments
 (0)