I turned onheap off in my cache definition file like:
<bean
class="org.apache.ignite.configuration.CacheConfiguration">
<property name="name"
value="personCache"></property>
<property name="statisticsEnabled"
value="true" />
<property name="onheapCacheEnabled"
value="false" />
<property name="indexedTypes"
value="java.lang.Long,
com.calm.report.model.Trade" />
<property name="cacheMode"
value="PARTITIONED" />
<property name="backups" value="0" />
<property name="memoryPolicyName"
value="500M_Region_Trade" />
</bean>
but I checked Heap memory used by ignitevisorcmd.sh:
| Heap memory initialized | 1gb
|
| Heap memory used | 296mb
|
| Heap memory committed | 990mb
|
| Heap memory maximum | 990mb
|
| Non-heap memory initialized | 2mb
|
| Non-heap memory used | 57mb
|
| Non-heap memory committed | 59mb
|
| Non-heap memory maximum | 1gb
why didn't it take effect ?
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Ignie-2-1-Heap-memory-used-issue-tp15844.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.