
elk
文章平均质量分 67
guagua070707
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
es 总结
1. Elasticsearch中的每个分片其实都是Lucene中的一个索引文件 2.当构建索引进行写入操作时,首先在主分片上完成数据的索引,然后数据会从主分片分发到备份分片上进行索引 3. Settings Settings是对集群中索引的定义信息,比如一个索引默认的分片数、副本数等。 Mapping Mapping表示中保存了定义索引中字段(Field)的存储类型、分词方式、是否存储等信息,有点类似于关系数据库(如MySQL)中的表结构信息。 在Elasticsearch中,Mapping原创 2022-02-20 18:49:26 · 782 阅读 · 0 评论 -
Elasticsearch实战与原理解析
文章参考自: 《Elasticsearch实战与原理解析》原文和代码下载 - 简书 1. 摘要 本文是牛冬的 《Elasticsearch实战与原理解析》的读书笔记。电子书还是看文字类的舒服,可以在PC上阅读,也可以在手机上阅读。看文章最后,提供原文链接和源代码链接。 目录如下: 第一部分 Elasticsearch 前传 第1 章 搜索技术发展史 2 1.1 正说搜索技术发展史 2 1.2 Elasticsearch 简介 . 5 1.3 Lucene 简介 . 5 1.4 知识点关联 . 7 1转载 2022-02-18 19:49:36 · 851 阅读 · 0 评论 -
logstash 笔记
only focus on use abstraction layer separate the representation logstash版本基于7.10 https://www.elastic.co/guide/en/logstash/7.10/index.html 测试logstach cd logstash-7.10.2 bin/logstash -e 'input { stdin { } } output { stdout {} }' skeleton https://www.ela原创 2022-02-18 17:10:36 · 486 阅读 · 0 评论 -
kibana 笔记
only focus on use abstraction layer separate the representation kibana 版本基于7.10 https://www.elastic.co/guide/en/kibana/7.10/kuery-query.html term query response:200 message:"quick brown fox" 如果不加引号,则搜索不会按照单词顺序进行 Without the quotes, the query matches doc原创 2022-02-18 11:26:50 · 166 阅读 · 0 评论 -
es使用总结
### es使用总结: 1. 创建mapping 参考:https://www.elastic.co/guide/en/elasticsearch/reference/7.10/mapping.html 2. 创建链接 ``` 参考: https://www.elastic.co/guide/en/elasticsearch/client/java-api-client/current/connecting.html https://www.elastic.co/guide/en...原创 2022-02-16 08:16:20 · 1471 阅读 · 0 评论 -
es 笔记 3
### only focus on use ### abstraction layer separate the representation ### Elasticsearch 版本基于7.10 - data streams ``` 数据流,需要一个index template Each data stream requires a matching index template. The template contains the mappings and settings used to ..原创 2022-02-14 08:23:31 · 892 阅读 · 0 评论 -
es 笔记 2
### only focus on use ### abstraction layer separate the representation ### Elasticsearch 版本基于7.10 安装 配置 mapping analyzer template - 安装es - 配置es ``` 配置的优先级 Transient setting Persistent setting elasticsearch.yml setting Default setting value ``` ..原创 2022-02-11 15:22:11 · 688 阅读 · 0 评论 -
es 笔记 1
### only focus on use ### abstraction layer separate the representation 1. Elasticsearch 2. 版本基于7.10 简介+节点+分片+简单索引数据+批量索引数据+cat健康检查 Elasticsearch uses a data structure called an inverted index that supports very fast full-text searches An index can be原创 2022-02-10 10:46:21 · 520 阅读 · 0 评论