[报错信息处理]
Hbase报错:Unable to allocate enough memory.
hbase /conf/hbase-site.xml增加配置:
<property>
<name>phoenix.query.maxGlobalMemoryPercentage</name>
<value>30</value>
</property>
默认值15
https://phoenix.apache.org/tuning.html#
所有线程使用的最大堆内存( Runtime.getRuntime().maxMemory())的百分比.只会对小的内存跟踪。主要是统计group by aggregation过程中产生的map内存的使用。当到达这个值的时候,会尝试获取更多的内存。主要就是节省内存的使用。默认是15%,可以适当增大。
|
|
|
|
|