es *** 作命令总结

es *** 作命令总结,第1张

es *** 作命令总结 – 查看mapping格式
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/要删除的索引"

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5677377.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存