ElasticSearch简单操作
2020-04-10 本文已影响0人
梦梦_9f1a
创建一篇文档
现在,我们试图将小黑的小姨妈的个人信息录入elasticsearch。我们只要输入:
PUT t1/doc/1 # t1:索引(库) doc:类型(表) 1:文档(行)
{
"name": "小黑的小姨妈", # name:字段
"age": 18
}
PUT表示创建命令。虽然命令可以小写,但是我们推荐大写。在以REST ful
风格返回的结果中:
{
"_index" : "t1",
"_type" : "type1",
"_id" : "1",
"_version" : 1,
"result" : "created",
"_shards" : {
"total" : 2,
"successful" : 1,
"failed" : 0
},
"_seq_no" : 0,
"_primary_term" : 1
}
结果中的result
则是操作类型,现在是created
,表示第一次创建。如果我们再次点击执行该命令,那么result
则会是updated
。我们细心则会发现_version
开始是1,现在你每点击一次就会增加一次。表示第几次更改。
查询所有索引
GET _cat/indices?v
image.png
上图中,展示当前集群中索引情况,包括,索引的健康状况、UUID、主副分片个数、大小等信息。
查询指定的索引信息
我们来单独看看t1
索引:
GET t1
返回的结果如下:
{
"t1" : {
"aliases" : { },
"mappings" : {
"properties" : {
"age" : {
"type" : "long"
},
"name" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
}
}
},
"settings" : {
"index" : {
"creation_date" : "1586515543071",
"number_of_shards" : "1",
"number_of_replicas" : "1",
"uuid" : "f4iojfqVSoGcKruV6W5vMQ",
"version" : {
"created" : "7050199"
},
"provided_name" : "t1"
}
}
}
}
返回了t1
索引的创建信息。
查询文档信息
查看我们刚才创建的那篇文档:
GET t1/doc/1
返回结果如下:
{
"_index" : "t1",
"_type" : "doc",
"_id" : "1",
"_version" : 1,
"_seq_no" : 0,
"_primary_term" : 1,
"found" : true,
"_source" : {
"name" : "小黑的小姨妈",
"age" : 18
}
}
返回了我们刚才创建的文档信息。
我们再来为小黑添加两个姨妈:
PUT t1/doc/2
{
"name": "小黑的二姨妈",
"age": 16
}
PUT t1/doc/3
{
"name": "小黑的三姨妈",
"age": 19
}
查询所有
GET t1/doc/_search
返回结果
{
"took" : 162,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 3,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "t1",
"_type" : "doc",
"_id" : "1",
"_score" : 1.0,
"_source" : {
"name" : "小黑的小姨妈",
"age" : 18
}
},
{
"_index" : "t1",
"_type" : "doc",
"_id" : "2",
"_score" : 1.0,
"_source" : {
"name" : "小黑的二姨妈",
"age" : 16
}
},
{
"_index" : "t1",
"_type" : "doc",
"_id" : "3",
"_score" : 1.0,
"_source" : {
"name" : "小黑的三姨妈",
"age" : 19
}
}
]
}
}
删除指定索引
我们其实直接删除这个t1
索引就可以了:
DELETE /t1
DELETE 是删除命令,返回结果如下:
{
"acknowledged" : true
}
返回结果提示删除确认成功。
如果此时再查询索引情况,则会发现t1
已经不存在了,所有的文档也就不存在了。