es数据库主要干什么用_【数据库-ES】ES基本操作

"name" : "node-1","cluster_name" : "my-application","cluster_uuid" : "9_YY1EoaR265QvxCeDkHPQ","version": {"number" : "7.6.2","build_flavor" : "default","build_type" : "tar","build_hash" : "ef48eb35cf30adf4db14086e8aabd07ef6fb113f","build_date" : "2020-03-26T06:34:37.794943Z","build_snapshot" : false,"lucene_version" : "8.4.0","minimum_wire_compatibility_version" : "6.8.0","minimum_index_compatibility_version" : "6.0.0-beta1"},"tagline" : "You Know, for Search"}

View Code

2.curl http://172.16.18.17:9200/_cat

_cat:列出es命令参数

=^.^=

/_cat/allocation/_cat/shards/_cat/shards/{index}/_cat/master/_cat/nodes/_cat/tasks/_cat/indices/_cat/indices/{index}/_cat/segments/_cat/segments/{index}/_cat/count/_cat/count/{index}/_cat/recovery/_cat/recovery/{index}/_cat/health/_cat/pending_tasks/_cat/aliases/_cat/aliases/{alias}/_cat/thread_pool/_cat/thread_pool/{thread_pools}/_cat/plugins/_cat/fielddata/_cat/fielddata/{fields}/_cat/nodeattrs/_cat/repositories/_cat/snapshots/{repository}/_cat/templates

View Code

3.curl http://172.16.18.17:9200/_cat/indices?v

?v 列出查询详细结果(带属性标识)

4.创建索引

curl -XPUT http://192.168.6.16:9200/my_new_index?pretty

?pretty:“pretty”来告诉Elasticsearch,做JSON格式化输出

5.插入数据

(1)错误方法

此原因时由于ES增加了安全机制, 进行严格的内容类型检查,严格检查内容类型也可以作为防止跨站点请求伪造攻击的一层保护。

(2)解决,增加-H

curl -H "Content-Type: application/json" -XPUT http://172.16.18.17:9200/index_test/user/1?pretty -d ‘{"name":"张三","age":"23"}‘

6.查询数据

curl -XGET http://172.16.18.17:9200/index_test/user/1?pretty

7.更新数据

curl -XPOST http://192.168.6.16:9200/my_new_index/user/2/_update?pretty -d ‘{"doc":{"name":"李四更新","age":"230"}}

8.删除数据

curl -XDELETE http://192.168.6.16:9200/my_new_index/user/2?pretty

9.查询某个索引中的所有数据

curl -XGET http://172.16.18.17:9200/index_test/user/_search?pretty

【数据库-ES】ES基本操作

标签:检查   style   防止   hid   har   splay   img   let   curl

本条技术文章来源于互联网,如果无意侵犯您的权益请点击此处反馈版权投诉

本文系统来源:https://www.cnblogs.com/yangming789/p/12719928.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值