
elasticSearch
justdoit180
这个作者很懒,什么都没留下…
展开
-
springboot与elasticsearch的整合
springboot与elasticsearch整合原创 2020-05-20 14:02:53 · 156 阅读 · 0 评论 -
使用快照的方式把一个elasticsearch集群的数据迁移到另一个elasticsearch集群上
需求:把elasticsearch5.5集群的数据迁移到elasticsearch6.5的集群上1.安装sshfs在elasticsearch集群上的节点都要安装sshfs服务,过程如下:1.1 下载安装包wget http://ftp.tu-chemnitz.de/pub/linux/dag/redhat/el7/en/x86_64/rpmforge/RPMS/fuse-sshfs-2....原创 2019-12-12 23:08:59 · 1522 阅读 · 1 评论 -
基于kibana的Dev Tools控制板上es常用查询语句
基于kibana的Dev Tools控制板的es常用查询语句:1、集群相关//查询集群健康状态 GET _cluster/health// 查询所有节点 GET _cat/nodes// 查询索引及分片的分布 GET _cat/shards// 查询所有插件 GET _cat/plugins2、索引相关查询//查询所有索引及容量 GE...转载 2019-07-31 12:37:02 · 8829 阅读 · 0 评论 -
ES 常用查询命令汇总
ES 常用查询命令汇总一、_cat操作_cat系列提供了一系列查询elasticsearch集群状态的接口。你可以通过执行curl -XGET localhost:9200/_cat获取所有_cat系列的操作/_cat/allocation/_cat/shards/_cat/shards/{index}/_cat/master/_cat/nodes/_cat/indices/...转载 2019-07-31 16:09:12 · 8638 阅读 · 0 评论