Open hehongwei44 opened 6 years ago
Elasticsearch: 权威指南: https://www.elastic.co/guide/cn/elasticsearch/guide/current/index.html
如前所述,一个 索引 类似于传统关系数据库中的一个 数据库 ,是一个存储关系型文档的地方。 索引 (index) 的复数词为 indices 或 indexes 。
索引一个文档 就是存储一个文档到一个 索引 (名词)中以便它可以被检索和查询到。这非常类似于 SQL 语句中的 INSERT 关键词,除了文档已存在时新文档会替换旧文档情况之外。
关系型数据库通过增加一个 索引 比如一个 B树(B-tree)索引 到指定的列上,以便提升数据检索速度。Elasticsearch 和 Lucene 使用了一个叫做 倒排索引 的结构来达到相同的目的。
文章链接:http://www.cnblogs.com/carryLess/p/9440199.html 如果是复制的话,容易出现问题,问题描述如下:搭建elsticsearch集群 报错with the same id but is a different node instance解决办法
解决方法:https://blog.csdn.net/qq_24879495/article/details/77718032
mysql数据实时同步到elasticsearch: https://blog.csdn.net/hatlonely/article/details/79945539
Kibana 基础入门: https://www.cnblogs.com/moonlightL/p/7764919.html
基于ELK+Beats进行系统监控: https://blog.csdn.net/moonpure/article/details/76215919
基础教程系列:https://www.yiibai.com/elasticsearch/elasticsearch_installation.html