查看es版本:
- curl XGET ‘localhost:9200’
查看index下数据
查看有哪些index
删除mapping
- curl -XDELETE 'http://localhost:19277/INDEX_NAME'
别名
添加别名
- curl http://localhost:9200/_aliases -X POST -H "Content-Type:application/json" -d '{"actions" : [{ "add" : { "index" : "archivespicture_v0", "alias" : "archivespicture" }}]}'
删除别名
- curl -XPOST localhost:9200/_aliases -d '
{
"actions": [
{
"remove": {
"alias": "my_index",
"index": "my_index_v1"
}
}
]
}
数据
查看指定数据
- curl http://localhost:9200/APPNAME/_search -d '{"query":{"match":{"itemid":"171206174256759"}}}'
删除指定数据
- curl -XPOST http://localhost:9200/APPNAME/_delete_by_query -H 'content-Type:application/json' -d '{"query":{"match":{"itemid":"200429182345804"}}}'
网友评论