做了个简单测试,在两台完全一样的虚拟机上,2000万条左右数据,Elasticsearch 插入数据速度比 MongoDB 慢很多(可以忍受),但是搜索/查询速度快10倍以上,这只是单机情况,多机集群情况下 Elasticsearch 表现更好一些。
【1】下载Elasticsearch安装包
衔接地址https://www.elastic.co/downloads/elasticsearch,下载对应的安装包。我下载是rpm。
【2】安装(需要jdk支持)
# rpm -ivh elasticsearch-2.1.0.rpm默认位置:
# systemctl daemon-reload
# systemctl enable elasticsearch.service
# systemctl start elasticsearch.service
配置文件: /etc/elasticsearch/
安装文件: /usr/share/elasticsearch/
【3】配置elasticsearch.yml
cluster.name 集群名【4】安装elasticsearch-head插件
node.name 节点名
path.data index数据路径
path.logs日志文件路径
network.host 主机IP
http.port端口
........
使用elasticsearch/bin/plugin即可安装。
https://github.com/mobz/elasticsearch-head
# elasticsearch/bin/plugin install mobz/elasticsearch-head衔接地址: http://localhost:9200/_plugin/head/即可看到效果