栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 前沿技术 > 大数据 > 大数据系统

es操作命令总结

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/要删除的索引"
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/672154.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号