elasticsearch 运行原理

elasticsearch 运行原理:

Lucene 把每次生成的倒排索引,叫做一个段(segment)。然后另外使用一个 commit 文件,记录索引内所有的 segment。而生成 segment 的数据来源,则是内存中的 buffer。也就是说,动态更新过程如下:

  1. 当前索引有 3 个 segment 可用。索引状态如图 2-1; A Lucene index with a commit point and three segments图 2-1

  2. 新接收的数据进入内存 buffer。索引状态如图 2-2; A Lucene index with new documents in the in-memory buffer, ready to commit图 2-2

  3. 内存 buffer 刷到磁盘,生成一个新的 segment,commit 文件同步更新。索引状态如图 2-3。 After a commit, a new segment is added to the index and the buffer is cleared图 2-3

posted on 2017-05-06 11:06  潺潺水声  阅读(250)  评论(0编辑  收藏  举报

导航