mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
This commit is contained in:
parent
d5cd4d2e7b
commit
8702675b55
1 changed files with 50 additions and 13 deletions
|
@ -2,19 +2,31 @@
|
|||
"put_settings": {
|
||||
"data_autocomplete_rules": {
|
||||
"refresh_interval": "1s",
|
||||
"number_of_shards": 5,
|
||||
"number_of_shards": 1,
|
||||
"number_of_replicas": 1,
|
||||
"blocks.read_only": {
|
||||
"__one_of": [false, true]
|
||||
"__one_of": [
|
||||
false,
|
||||
true
|
||||
]
|
||||
},
|
||||
"blocks.read": {
|
||||
"__one_of": [true, false]
|
||||
"__one_of": [
|
||||
true,
|
||||
false
|
||||
]
|
||||
},
|
||||
"blocks.write": {
|
||||
"__one_of": [true, false]
|
||||
"__one_of": [
|
||||
true,
|
||||
false
|
||||
]
|
||||
},
|
||||
"blocks.metadata": {
|
||||
"__one_of": [true, false]
|
||||
"__one_of": [
|
||||
true,
|
||||
false
|
||||
]
|
||||
},
|
||||
"term_index_interval": 32,
|
||||
"term_index_divisor": 1,
|
||||
|
@ -22,7 +34,10 @@
|
|||
"translog.flush_threshold_size": "200mb",
|
||||
"translog.flush_threshold_period": "30m",
|
||||
"translog.disable_flush": {
|
||||
"__one_of": [true, false]
|
||||
"__one_of": [
|
||||
true,
|
||||
false
|
||||
]
|
||||
},
|
||||
"cache.filter.max_size": "2gb",
|
||||
"cache.filter.expire": "2h",
|
||||
|
@ -42,10 +57,19 @@
|
|||
}
|
||||
},
|
||||
"recovery.initial_shards": {
|
||||
"__one_of": ["quorum", "quorum-1", "half", "full", "full-1"]
|
||||
"__one_of": [
|
||||
"quorum",
|
||||
"quorum-1",
|
||||
"half",
|
||||
"full",
|
||||
"full-1"
|
||||
]
|
||||
},
|
||||
"ttl.disable_purge": {
|
||||
"__one_of": [true, false]
|
||||
"__one_of": [
|
||||
true,
|
||||
false
|
||||
]
|
||||
},
|
||||
"analysis": {
|
||||
"analyzer": {},
|
||||
|
@ -54,18 +78,31 @@
|
|||
"char_filter": {}
|
||||
},
|
||||
"cache.query.enable": {
|
||||
"__one_of": [true, false]
|
||||
"__one_of": [
|
||||
true,
|
||||
false
|
||||
]
|
||||
},
|
||||
"shadow_replicas": {
|
||||
"__one_of": [true, false]
|
||||
"__one_of": [
|
||||
true,
|
||||
false
|
||||
]
|
||||
},
|
||||
"shared_filesystem": {
|
||||
"__one_of": [true, false]
|
||||
"__one_of": [
|
||||
true,
|
||||
false
|
||||
]
|
||||
},
|
||||
"data_path": "path",
|
||||
"codec": {
|
||||
"__one_of": ["default", "best_compression", "lucene_default"]
|
||||
"__one_of": [
|
||||
"default",
|
||||
"best_compression",
|
||||
"lucene_default"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue