-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Closed
Labels
:Core/Infra/CoreCore issues without another labelCore issues without another label
Description
Elasticsearch version (bin/elasticsearch --version): >= 5.x
Description of the problem including expected versus actual behavior:
This is probably documentation related issue. There are a few places where the documentation mentions that the scaling thread pool uses the core value for the minimum value. For example:
- Doc for scaling thread pool: "... between the value of the
coreandmaxparameters" - 5.x breaking changes for thread pool settings: "... has been changed from
mintocore"
However, in the output I see only min value where the core should be expected:
// http://10.8.245.12:9200/_nodes/_local/thread_pool
{
"_nodes": {
"total": 1,
"successful": 1,
"failed": 0
},
"cluster_name": "xxxxxxxx",
"nodes": {
"DK0UQ_fFTZ6fz0H2v9XsKw": {
"name": "xxxxxxxx-1",
"transport_address": "172.16.220.11:9300",
"host": "172.16.220.11",
"ip": "172.16.220.11",
"version": "5.5.2",
"build_hash": "b2f0c09",
"roles": [
"master",
"data",
"ingest"
],
"thread_pool": {
"force_merge": {
"type": "fixed",
"min": 1,
"max": 1,
"queue_size": -1
},
"fetch_shard_started": {
"type": "scaling",
"min": 1,
"max": 8,
"keep_alive": "5m",
"queue_size": -1
},
"listener": {
"type": "fixed",
"min": 2,
"max": 2,
"queue_size": -1
},
"index": {
"type": "fixed",
"min": 4,
"max": 4,
"queue_size": 200
},
"refresh": {
"type": "scaling",
"min": 1,
"max": 2,
"keep_alive": "5m",
"queue_size": -1
},
"generic": {
"type": "scaling",
"min": 4,
"max": 128,
"keep_alive": "30s",
"queue_size": -1
},
"warmer": {
"type": "scaling",
"min": 1,
"max": 2,
"keep_alive": "5m",
"queue_size": -1
},
"search": {
"type": "fixed",
"min": 7,
"max": 7,
"queue_size": 1000
},
"flush": {
"type": "scaling",
"min": 1,
"max": 2,
"keep_alive": "5m",
"queue_size": -1
},
"fetch_shard_store": {
"type": "scaling",
"min": 1,
"max": 8,
"keep_alive": "5m",
"queue_size": -1
},
"management": {
"type": "scaling",
"min": 1,
"max": 5,
"keep_alive": "5m",
"queue_size": -1
},
"get": {
"type": "fixed",
"min": 4,
"max": 4,
"queue_size": 1000
},
"bulk": {
"type": "fixed",
"min": 4,
"max": 4,
"queue_size": 200
},
"snapshot": {
"type": "scaling",
"min": 1,
"max": 2,
"keep_alive": "5m",
"queue_size": -1
}}}}}Metadata
Metadata
Assignees
Labels
:Core/Infra/CoreCore issues without another labelCore issues without another label