开发者学堂课程【ElasticSearch 入门精讲:Settings 和 Mappings_Settings】学习笔记,与课程紧密连接,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/631/detail/10026
Settings 和 Mappings_Settings
维护索引库默认配置,当然经常用来修改默认配置。
例如∶分片数量,副本数量
查看:
curl-XGET
http://localhost:9200/bigdata/_settings?pretty178
操作不存在的索引:
curl -XPUT "localhost:9200/bigdata/
d"{"settings":{""number_of_shards":3,"number_of_replicas":2})
操作已存在的索引:
curl -XPUT "localhost:9200/bigdata/_settings'
-d"{"index":{"number_of_replicas":2)}
注意:
number of shards 是在建立索引库时指定的,此后不能修改。
删除: