
curl -XGET --user es账号:es密码 "http://192.168.0.212:9200/索引/_mapping?pretty" -H 'Content-Type: application/json' -d'{
"productindex" : {
"mappings" : { }
}
}'
– 增加字段
curl -XPUT --user es账号:es密码 "http://192.168.0.212:9200/索引/_mapping/_doc?include_type_name=true" -H 'Content-Type: application/json' -d'{
"properties": {
"deviceId": {
"type": "keyword"
}
}
}'
– 根据字段删除数据
curl -XPOST --user es账号:es密码 "http://192.168.0.212:9200/索引/_delete_by_query?pretty" -H 'Content-Type: application/json' -d'{
"query": {
"term": {
"idCardNo": {
"value": "**********"
}
}
}
}'
– 查询索引内部所有数据
curl -XGET --user es账号:es密码 "http://192.168.0.212:9200/索引/_search?pretty" -H 'Content-Type: application/json' -d'{
"query":{
"match_all": {}
}
}'
– 根据id删除数据
curl -XDELETE --user es账号:es密码 "http://192.168.0.212:9200/索引/_doc/要删除的数据id"– 删除索引
curl -XDELETE --user es账号:es密码 "http://192.168.0.212:9200/要删除的索引"
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)