es學習-索引管理
阿新 • • 發佈:2018-07-28
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學習-索引管理