今天发现安装了ElasticSearch的服务器最近cpu占用率经常超过100%,实在受不了了。
如果安装了elasticsearch/plugins/marvel插件,查看是否因为索引文件过大导致的。
curl http://localhost:9200/_cat/indices?v
发现一个37G的超大数据索引,删除它。
curl -XDELETE http://localhost:9200/myindex*
这时候你在top查看cpu占用率,自然下降了。
今天发现安装了ElasticSearch的服务器最近cpu占用率经常超过100%,实在受不了了。
如果安装了elasticsearch/plugins/marvel插件,查看是否因为索引文件过大导致的。
curl http://localhost:9200/_cat/indices?v
发现一个37G的超大数据索引,删除它。
curl -XDELETE http://localhost:9200/myindex*
这时候你在top查看cpu占用率,自然下降了。