New Elasticsearch Reports: Warmers, Thread Pools and Circuit Breakers
Join the DZone community and get the full member experience.
Join For FreeHave you read the Top 10 Elasticsearch Metrics to Watch?
How about our free eBook – Elasticsearch Monitoring Essentials?
If you have, we’re impressed. If not, it’s great bedtime reading. ;)
Besides writing bedtime reading material, we also wrote some code last month and added a few new and useful Elasticsearch metrics to SPM. Specifically, we’ve added:
- Index Warmer metrics
- Thread Pool metrics
- Circuit Breaker metrics
So why are these important? Read on!
Index Warmers
Warmers do what their name implies. They warm up. But what? Indices. Why? Because warming up an index means searches against it will be faster. Thus, one can warm up indices before exposing searches against them. If you come to Elasticsearch from Solr, this is equivalent to searcher warmup queries in Solr.
Thread Pools
Elasticsearch nodes use a number of dedicated thread pools to handle different types of requests. For example, indexing requests are handled by a thread pool that is separate from the thread pool that handles search requests. This helps with better memory management, request prioritization, isolation, etc. There are over a dozen thread pools, and each of them exposes almost a dozen metrics.
Each pool also has a queue, which makes it possible to hold onto some requests instead of simply dropping them when a node is very busy. However, if your Elasticsearch cluster handles a lot of concurrent or slow requests, it may sometimes have to start rejecting requests if those thread pool queues are full. When that starts happening, you will want to know about it ASAP. Thus, you should pay close attention to thread pool metrics and may want to set Alerts and SPM’s Anomaly Detection Alerts on the metric that shows the number of rejection or queue size, so you can adjust queue size settings, or other parameters to avoid requests being rejected.
Alternatively, or perhaps additionally, you may want to feed your logs to Logsene. Elasticsearch can log request rejections (see an example below), so if your ship your Elasticsearch logs to Logsene, you’ll have both Elasticsearch metrics and its logs available for troubleshooting. Moreover, in Logsene you can create alert queries that alert you about anomalies in your logs, and such alert queries will alert you when Elasticsearch starts logging errors, like the example shown here:
o.es.c.u.c.EsRejectedExecutionException: rejected execution (queue capacity 1000) on org.elasticsearch.search.action.SearchServiceTransportAction$23@5a805c60
at org.elasticsearch.common.util.concurrent.EsAbortPolicy.rejectedExecution(EsAbortPolicy.java:62)
at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:821)
at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1372)
at org.elasticsearch.search.action.SearchServiceTransportAction.execute(SearchServiceTransportAction.java:509)
at org.elasticsearch.search.action.SearchServiceTransportAction.sendExecuteScan(SearchServiceTransportAction.java:441)
at org.elasticsearch.action.search.type.TransportSearchScanAction$AsyncAction.sendExecuteFirstPhase(TransportSearchScanAction.java:68)
at org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction.performFirstPhase(TransportSearchTypeAction.java:171)
at org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction.start(TransportSearchTypeAction.java:153)
at org.elasticsearch.action.search.type.TransportSearchScanAction.doExecute(TransportSearchScanAction.java:52)
at org.elasticsearch.action.search.type.TransportSearchScanAction.doExecute(TransportSearchScanAction.java:42)
at org.elasticsearch.action.support.TransportAction.execute(TransportAction.java:63)
at org.elasticsearch.action.search.TransportSearchAction.doExecute(TransportSearchAction.java:107)
at org.elasticsearch.action.search.TransportSearchAction.doExecute(TransportSearchAction.java:43)
at org.elasticsearch.action.support.TransportAction.execute(TransportAction.java:63)
at org.elasticsearch.action.search.TransportSearchAction$TransportHandler.messageReceived(TransportSearchAction.java:124)
at org.elasticsearch.action.search.TransportSearchAction$TransportHandler.messageReceived(TransportSearchAction.java:113)
Circuit Breakers
Circuit Breakers are Elasticsearch’s attempt to control memory usage and prevent the dreaded OutOfMemoryError. There are currently two Circuit Breakers – one for Field Data, the other for Requests. In short, you can set limits for each of them and prevent excessive memory usage to avoid your cluster blowing up with OOME.
Want Something Like this for Your Elasticsearch cluster?
Feel free to register here and enjoy all the SPM for Elasticsearch goodness. There’s no commitment and no credit card required. And, if you are a young startup, a small or non-profit organization, or an educational institution, ask us for a discount (see special pricing)!
Feedback & Questions
We are happy to answer questions or receive feedback – please drop us a line or get us @sematext.
Opinions expressed by DZone contributors are their own.
Comments