ES加速恢复
ES加速恢复
#ES加速恢复
PUT _cluster/settings
{
"persistent": {
"cluster": {
"routing": {
"allocation.node_concurrent_recoveries": 8
}
}
}
}
PUT _cluster/settings
{
"persistent": {
"cluster": {
"routing": {
"allocation.cluster_concurrent_rebalance": 8
}
}
}
}
PUT _cluster/settings
{
"persistent" : {
"indices.recovery.max_bytes_per_sec" : "500mb"
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
上次更新: 12/20/2024
- 01
- Logstash迁移ES数据12-11
- 02
- Elastichsearch使用wildcard字段模糊匹配12-07