随笔分类 -  ELASTICSEARCH

该文被密码保护。
posted @ 2022-01-15 11:16 秋华 编辑
该文被密码保护。
posted @ 2021-09-02 23:11 秋华 编辑
该文被密码保护。
posted @ 2021-09-02 23:05 秋华 编辑
该文被密码保护。
posted @ 2021-09-02 22:25 秋华 编辑
该文被密码保护。
posted @ 2021-09-02 21:57 秋华 编辑
该文被密码保护。
posted @ 2021-09-02 21:51 秋华 编辑
该文被密码保护。
posted @ 2021-09-02 21:05 秋华 编辑
该文被密码保护。
posted @ 2021-09-01 23:33 秋华 编辑
该文被密码保护。
posted @ 2021-09-01 23:31 秋华 编辑
该文被密码保护。
posted @ 2021-09-01 23:21 秋华 编辑
该文被密码保护。
posted @ 2021-09-01 23:14 秋华 编辑
该文被密码保护。
posted @ 2021-09-01 23:12 秋华 编辑
该文被密码保护。
posted @ 2021-09-01 23:09 秋华 编辑
摘要:1 软件下载 软件下载地址:https://www.elastic.co/cn/downloads/past-releases/elasticsearch-7-8-0 2 软件安装 1) 解压软件 将下载的软件解压缩 # 解压缩 tar -zxvf elasticsearch-7.8.0-linux 阅读全文
posted @ 2021-09-01 23:02 秋华 编辑
摘要:1 软件下载 软件下载地址:https://www.elastic.co/cn/downloads/past-releases/elasticsearch-7-8-0 2 软件安装 1) 解压软件 将下载的软件解压缩 # 解压缩 tar -zxvf elasticsearch-7.8.0-linux 阅读全文
posted @ 2021-09-01 22:58 秋华 编辑
摘要:1 部署集群 1) 创建 elasticsearch-cluster 文件夹,在内部复制三个 elasticsearch 服务 2) 修改集群文件目录中每个节点的 config/elasticsearch.yml 配置文件  node-1001 节点  node-1002 节点  node-1 阅读全文
posted @ 2021-09-01 22:50 秋华 编辑
摘要:1 单机 & 集群 单台 Elasticsearch 服务器提供服务,往往都有最大的负载能力,超过这个阈值,服务器性能就会大大降低甚至不可用,所以生产环境中,一般都是运行在指定服务器集群中。除了负载能力,单点服务器也存在其他问题: 单台机器存储容量有限 单服务器容易出现单点故障,无法实现高可用 阅读全文
posted @ 2021-09-01 22:39 秋华 编辑
摘要:1 请求体查询 2 高亮查询 3 聚合查询 package com.atguigu.es.test; import org.apache.http.HttpHost; import org.apache.lucene.search.TotalHits; import org.elasticsearc 阅读全文
posted @ 2021-09-01 22:22 秋华 编辑
摘要:1 新增文档 创建数据模型 package com.atguigu.es.test; public class User { private String name; private String sex; private Integer age; public String getName() { 阅读全文
posted @ 2021-09-01 22:17 秋华 编辑