Skip to content

Commit

Permalink
Merge pull request looly#113 from wisdom-wf/master
Browse files Browse the repository at this point in the history
总结了一下排序的过程
  • Loading branch information
looly authored Nov 14, 2016
2 parents bec01b9 + 8e2b55d commit f2e0824
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions 060_Distributed_Search/05_Query_phase.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ GET /_search

协调节点将这些分片级的结果合并到自己的有序优先队列里。这个就代表了最终的全局有序结果集。到这里,查询阶段结束。

整个过程类似于归并排序算法,先分组排序再归并到一起,对于这种分布式场景非常适用。
> ###注意
> 一个索引可以由一个或多个原始分片组成,所以一个对于单个索引的搜索请求也需要能够把来自多个分片的结果组合起来。一个对于
Expand Down
2 changes: 1 addition & 1 deletion 070_Index_Mgmt/35_Dynamic_Mapping.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### 动态映射

当 Elasticsearch 遭遇一个位置的字段时,它通过【动态映射】来确定字段的数据类型且自动将该字段加到类型映射中。
当 Elasticsearch 处理一个位置的字段时,它通过【动态映射】来确定字段的数据类型且自动将该字段加到类型映射中。

有时这是理想的行为,有时却不是。或许你不知道今后会有哪些字段加到文档中,但是你希望它们能自动被索引。或许你仅仅想忽略它们。特别是当你使用 Elasticsearch 作为主数据源时,你希望未知字段能抛出一个异常来警示你。

Expand Down

0 comments on commit f2e0824

Please sign in to comment.