elasticsearch
elasticsearch
楽焫旒璡
java
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
elasticsearch(12) : 数据迁移
参考 :说明 : es集群版本都为7.16.2, logstash版本为6.8.22。转载 2023-02-21 14:28:00 · 196 阅读 · 0 评论 -
elasticsearch(11) : 导出导入数据
参考 :转载 2022-11-24 15:33:56 · 743 阅读 · 0 评论 -
elasticsearch(10) : avg
参考 :ElasticSearch--聚合分析(group by, avg,sort等)_小毛贼_哪里逃-CSDN博客 根据name字段分组然后age字段求avg POST /test_index_2022/_search?size=0 { "aggs": { "group_by_tag": { "terms": { "field": "name" }, "aggs": { "avg_age": { .转载 2022-03-01 14:17:16 · 319 阅读 · 0 评论 -
elasticsearch(9) : 范围及精确组合查询
POST /test_index_2022/_search { "query": { "bool": { "must": [ { "range": { "timestamp": { "gte": "1646064007523", "lte": "1646064009523" } } }, ...原创 2022-03-01 14:11:06 · 1414 阅读 · 0 评论 -
elasticsearch(8) : javaApi
参考 :ES工具类ESUtils_心静自然禅的专栏-CSDN博客_es工具类 maven <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.3</version> ..转载 2021-12-14 18:06:01 · 2224 阅读 · 0 评论 -
elasticsearch(7) : 创建mapping及突破一万行
max_result_window 为查询返回最大行数上限 deviceId --> 字段名 type:keyword --> 精确查找 curl -H "Content-Type:application/json" -XPUT http://127.0.0.1:9200/test_index_2021_12_16 -d \ ' { "mappings":{ "properties":{ "deviceId":{ ..原创 2021-12-14 16:42:17 · 1545 阅读 · 0 评论 -
elasticsearch(6) : CURL相关命令
参考 :elasticsearch中使用curl进行的简单查询_浅谈-CSDN博客_curl查询es某个索引数据 查看所有索引 curl http://127.0.0.1:9200/_cat/indices?v 查看单个索引信息 curl -XGET http://127.0.0.1:9200/test_index?pretty 精确查询 curl -H "Content-Type:application/json" -XGET http://127.0.0.1:9200/test_.原创 2021-12-14 16:37:42 · 1633 阅读 · 0 评论 -
elasticsearch(5) : 相关链接
elasticsearch Es版本 7.4.2 安装 https://blog.csdn.net/weixin_42697074/article/details/103815945 https://blog.csdn.net/weixin_43863895/article/details/106631161 https://www.jianshu.com/p/ef16169f9912 es及ik分词器 https://blog.csdn.net/weixin_4...原创 2020-09-03 16:29:11 · 250 阅读 · 0 评论 -
elasticsearch(4) : 7.4.2 restfull api
参考 :https://www.jianshu.com/p/07682e610c49 END。转载 2020-08-26 18:40:52 · 233 阅读 · 0 评论 -
elasticsearch(2) : 安装kibana
参考 : https://www.jianshu.com/p/ef16169f9912 https://www.jianshu.com/p/fdfead5acc23 END。转载 2020-08-26 18:38:39 · 533 阅读 · 0 评论 -
elasticsearch(2) : docker安装elasticsearch7.4.2
参考 :https://www.jianshu.com/p/ef16169f9912转载 2020-08-26 18:37:04 · 570 阅读 · 0 评论 -
elasticsearch(1) : 说明
统一说明 安装方式 : docker 镜像下载方式 : docker pull elasticsearch版本 : 7.4.2 kibana版本 : 7.4.2 java版本 :1.8.0_181 宿主机 : MacOS MacOS版本 : 相关链接 END。原创 2020-08-26 18:31:26 · 209 阅读 · 0 评论
分享