1. 程式人生 > >Elasticsearch 使用技巧筆記

Elasticsearch 使用技巧筆記

elastic ble style pre routing nbsp code assign ear

1.重新分片

當出現Unassigned分片時,我們可以通過分片重分配解決這個問題

curl -X PUT http://192.168.0.37:9200/_cluster/settings \
  -d {
  "transient": {
    "cluster.routing.allocation.enable": "all"
  }
}

2.重新設定副本數量

ES可以隨時變更副本數量,例如在初期向ES中導入數據的時候,設定副本數為0,導入結束後再提升副本數,可大大提升導入效率

curl -XPUT ‘192.168.0.37:9200/youIndexName/_settings‘ -d ‘{ 
   "index.merge.scheduler.max_thread_count" : 1
}‘

Elasticsearch 使用技巧筆記