您好,登錄后才能下訂單哦!
重置備份
curl -XPUT "http://localhost:9200/_settings" -d'
{
"number_of_replicas" : 2
}'
2. 安全關(guān)閉
curl -XPUT http://localhost:9200/_cluster/settings -d'
{
"transient" : {
"cluster.routing.allocation.enable" : "none"
}
}'
curl -XPUT http:// localhost:9200/_cluster/settings -d'
{
"transient" : {
"cluster.routing.allocation.enable" : "all"
}
}'
3. 關(guān)閉自動(dòng)刷新
大批量插入之前
# curl -XPUT http://127.0.0.1:9200/*-d'
{
"settings" : {
"refresh_interval": "-1"
}
}'
大批量插入之后改回1
4. 索引別名
curl -XPOST 'http://localhost:9200/_aliases' -d '
{
"actions": [
{"remove": {"index": "*", "alias": "*"}},
{"add": {"index":"*", "alias": " *"}}
]
}'
5. 手動(dòng)分配分片
分配一個(gè)未分配的分片到指定節(jié)點(diǎn)??梢灾付ㄋ饕头制?hào)。node參數(shù)指定分配到那個(gè)節(jié)點(diǎn)。allow_primary參數(shù)可以強(qiáng)制分配主分片,不過(guò)這樣可能導(dǎo)致數(shù)據(jù)丟失。
curl -s "http://localhost:9200/_cat/shards" | grep UNASSIGNED
curl 'localhost:9200/_nodes/process?pretty'
curl -XPOST 'localhost:9200/_cluster/reroute' -d '{
"commands" : [ {
"allocate" : {
"index" : "your_index_name",
"shard" : 1 (share index),
"node" : "AfUyuXmGTESHXpwi4OExxx(NODE 編碼)",
"allow_primary" : true
}
}
]
}'
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。