发布于 2015-10-18 00:31:18 | 216 次阅读 | 评论: 0 | 来源: 网友投递
这里有新鲜出炉的ElasticSearch权威指南,程序狗速度看过来!
ElasticSearch 基于Lucene的搜索引擎
ElasticSearch是一个基于Lucene构建的开源,分布式,RESTful搜索引擎。设计用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。支持通过HTTP使用JSON进行数据索引。
我们建立一个网站或应用程序,并要添加搜索功能,令我们受打击的是:搜索工作是很难的。我们希望我们的搜索解决方案要快,我们希望有一个零配置和一个完全免费的搜索模式,我们希望能够简单地使用JSON通过HTTP的索引数据,我们希望我们的搜索服务器始终可用,我们希望能够一台开始并扩展到数百,我们要实时搜索,我们要简单的多租户,我们希望建立一个云的解决方案。Elasticsearch旨在解决所有这些问题和更多的。
Elasticsearch 1.7.3 发布,此版本是个 bug 修复版本,基于 Lucene 4.10.4,这是最新的稳定版本。
改进列表:
Synced flushes were reactivating inactive shards, thus reducing the size of the index buffer available to truly active shards. This could result in smaller segments than normal being written, which in turn causes more merging, and slower indexing on nodes with many inactive shards. (#13802, #13759)
Snapshot/Restore operations were being throttled excessively. (#13828)
Tribe nodes connected to slow clusters were holding onto old cluster states for too long, resulting in heavy memory usage. (#13948, #13566)
The analyzer
, index_analyzer
, and search_analyzer
mapping settings were applied in indeterminate order, making a smooth transition to 2.0.0 difficult. (#14060)
The networking layer had a bug in its SSL handling, which has been fixed by upgrading to Netty 3.10.5. (#14105)
下载:
更多内容请看发行说明。
ElasticSearch是一个基于Lucene构建的开源,分布式,RESTful搜索引擎。设计用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。支持通过HTTP使用JSON进行数据索引。
我们建立一个网站或应用程序,并要添加搜索功能,令我们受打击的是:搜索工作是很难的。我们希望我们的搜索解决方案要快,我们希望有一个零配置和一个完全免费的搜索模式,我们希望能够简单地使用JSON通过HTTP的索引数据,我们希望我们的搜索服务器始终可用,我们希望能够一台开始并扩展到数百,我们要实时搜索,我们要简单的多租户,我们希望建立一个云的解决方案。Elasticsearch旨在解决所有这些问题和更多的。