Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Ambari-metrics-collector getting down

avatar
Explorer

Ambari metricss collector getting down with following error and we are not using hbase:

WARN org.apache.hadoop.hbase.io.util.HeapMemorySizeUtil: hbase.regionserver.global.memstore.upperLimit is deprecated by hbase.regionserver.global.memstore.size


1 REPLY 1

avatar
Master Mentor

@Nikhil Belure

You will need to adjust the value of AMS heap size

When memstore are being forced to flush to make room in memory.keep flushing until we hit this mark. Defaults to 35% of heap. The value equals to the hbase.regionserver.global.memstore.upperLimit causes the minimum possible flushing to occur when updates are blocked to memstore limiting

hbase.regionserver.global.memstore.lowerLimit = 0.3

Maximum Size of all memstores in the region server before new updates are blocked and flushes are forces. This defaults to 40% of the heap

hbase.regionserver.global.memstore.upperLimit = 0.35

Maximum Size of all memstores in the region server before new updates are blocked and flushes are forces. This defaults to 40% of the heap

So what is the current size of your Metrics Collector Heap Size? With the above setup with a cluster size of <20 nodes Set in the Advanced ams-env the value of Metrics Collector Heap Size = 1024 that should work.


Please can you use this as a reference to tune your AMS

https://cwiki.apache.org/confluence/display/AMBARI/Configurations+-+Tuning


Hope that helps