1. 程式人生 > >es學習-索引管理

es學習-索引管理

mage setting 管理 ppi per 刪除索引 副本 tin .com

1.創建索引

http://192.168.0.108:9200/suoyinguanli211/

參數:

{
   "settings":{
      "index":{
          "number_of_shards":3,分片數
          "number_of_replicas":2 副本數
     }
  }
}

技術分享圖片

結果如圖

技術分享圖片

修改索引信息

url:http://192.168.0.108:9200/suoyinguanli211/_settings/

參數:

{
"number_of_replicas":1
}

技術分享圖片

結果:

技術分享圖片

定義映射類型:

url:http://192.168.0.108:9200/suoyinguanli211-1/

參數:

{
	"settings": {
		"index": {
			"number_of_shards": 3,
			"number_of_replicas": 1
		},
		"mapping": {
			"secilog": {
				"properties": {
					"name": {
						"type": "string",
						"index": "not_analyzed"
					},
					"name2": {
						"type": "string",
						"index": "analyzed"
					}
				}
			}
		}
	}
}

  

結果:

技術分享圖片

刪除索引:

url :delete http://192.168.0.108:9200/suoyinguanli211-1/

技術分享圖片

獲取索引:

技術分享圖片

es學習-索引管理