溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

elasticsearch 特殊命令

發(fā)布時(shí)間:2020-07-03 00:48:55 來(lái)源:網(wǎng)絡(luò) 閱讀:777 作者:大海之中 欄目:開(kāi)發(fā)技術(shù)
  1. 重置備份


    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

              }

            }

        ]

    }'


向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI