Elasticsearch索引操作

index索引操作:

操作符PUT大小写敏感,小写不生效

1、创建索引: 创建索引 yang  

curl -XPUT http://192.168.0.128:9200/yang

2、修改索引

curl -XPUT http://192.168.0.128:9200/yang/_settings -d '{"index":{"number_of_replicas":3}}' 

分片不能修改 

3、删除索引

curl -X DELETE 'http://192.168.0.128:9200/shuang/'

4、查看索引

curl -X get 'http://192.168.0.128:9200/yang/_settings'

索引信息

 {
    yang: {
        aliases: {
            
        },
        mappings: {
            
        },
        settings: {
            index: {
                creation_date: "1456087884141",
                number_of_shards: "5",
                number_of_replicas: "3",
                uuid: "dAIkiIL_Qh6HH3PYSQu3OA",
                version: {
                    created: "2020099"
                }
            }
        },
        warmers: {
            
        }
    }
}

你可能感兴趣的:(elasticsearch,index)