码迷,mamicode.com
首页 >  
搜索关键字:ElasticSearch    ( 5013个结果
(转)Elasticsearch集群的脑裂问题
转自 http://blog.csdn.net/cnweike/article/details/39083089 所谓脑裂问题(类似于精神分裂),就是同一个集群中的不同节点,对于集群的状态有了不一样的理解。 今天,Elasticsearch集群出现了查询极端缓慢的情况,通过以下命令查看集群状态: c ...
分类:其他好文   时间:2016-06-20 23:38:09    阅读次数:145
ElasticSearch 在windows环境下安装
1、下载ElasticSearch(https://www.elastic.co/downloads) 2、解压文件,将文件放到C:\Windows\System32\elasticsearch-2.3.3目录下 3、通过命令行启动es服务 1)右击bin/elasticsearch.bat,以管理 ...
分类:Windows程序   时间:2016-06-20 18:52:00    阅读次数:450
Kibana+Logstash+Elasticsearch 日志查询系统
Kibana+Logstash+Elasticsearch 日志查询系统 ...
分类:其他好文   时间:2016-06-20 18:35:53    阅读次数:264
最近技术方向:
技术课题 Docker/Kubernetes Spring Boot / Spring Cloud Zookeeper Elasticsearch / Lucene /Solr Logstash Kibana Redis MongoDB Spark Storm / JStorm Dubbo/Thri ...
分类:其他好文   时间:2016-06-20 10:06:25    阅读次数:219
Python Moniotr ElasticSearch
参考本人监控篇:PythonMonitorElasticsearch
分类:编程语言   时间:2016-06-19 18:41:40    阅读次数:156
ELK部署之ElasticSearch 安装
ElasticSearch个基于Lucene的搜索服务器;可以使用多节点的备份;集群设置;(类似是个数据库型、有索引有什么的)、(luceneapache基金的全文检索引擎的架构)1、ElasticSearch安装使用;软件架构安装时第一步;检测JDK环境在8版以上;如果已经有了可以安装卸载掉yumremovejdk如..
分类:其他好文   时间:2016-06-18 01:35:13    阅读次数:398
ELK-Logstash MySQL 慢查询日志分析
#mysql_slow.confinput{file{type=>"mysql-slow"path=>"/var/log/mysql_slow_log.log"}}filter{if[type]=="mysql-slow"{#grep{#ignore‘#Time:‘asweusetheSETtimestamptogetthetime.grepisactually#onthedeprecationcyclesoneedtofigureoutanalternativetothis#match=>..
分类:数据库   时间:2016-06-16 13:29:21    阅读次数:356
ELK-Logstash Nginx 日志分析
logstash配置文件#nginx_log.confinput{file{type=>"nginx_log"path=>"/opt/nginx/logs/access.log"}}filter{if[type]=="nginx_log"{grok{match=>{"message"=>"%{NGINXACCESS}"}}if([message]=~"^*launcher*|^*favicon*"){drop{}}geoip{source=>"remote_addr"ta..
分类:其他好文   时间:2016-06-16 13:28:06    阅读次数:443
ELK-Logstash Linux 历史记录日志分析
修改环境配置文件#/etc/bashrc添加以下内容:HISTFILE=‘/var/log/history_command.log‘if[!-f$HISTFILE];thentouch$HISTFILEchmod666$HISTFILEfiexportHISTTIMEFORMAT="%F%T,$HOSTNAME,$(who-uami2>/dev/null|\awk‘{print$NF}‘|sed-e‘s/[()]//g‘),$(whoami|awk‘{print$1}‘),$..
分类:系统相关   时间:2016-06-16 13:28:05    阅读次数:420
ElasticSearch for Modify your Data
一、UpdatingDocumentsThisexampleshowshowtoupdateourpreviousdocument(IDof1)bychangingthenamefieldto"JaneDoe":curl-XPOST‘192.168.56.101:9200/customer/external/1/_update?pretty‘-d‘{"doc":{"name":"JaneDoe"}}‘Thisexampleshowshowtoupdateourpreviousdocument(IDof1)..
分类:其他好文   时间:2016-06-16 11:50:06    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!