Hi,

Is Ignite having any limit to create the memory region on single server
node. Because i created server node with following 

<property name="memoryConfiguration">
        <bean class="org.apache.ignite.configuration.MemoryConfiguration">
                <property name="defaultMemoryPolicyName" value="Default_Region" 
/>
                <property name="pageSize" value="4096" />
                <property name="systemCacheInitialSize" value="#{40 * 1024 * 
1024}" />
                <property name="systemCacheMaxSize" value="#{40 * 1024 * 1024}" 
/>
                <property name="memoryPolicies">
                        <list>
                                <bean 
class="org.apache.ignite.configuration.MemoryPolicyConfiguration">
                                        <property name="name" 
value="Default_Region" />
                                        <property name="initialSize" 
value="#{4L * 1024 * 1024 * 1024}" />
                                        <property name="maxSize" value="#{6L * 
1024 * 1024 * 1024}" />
                                        <property name="pageEvictionMode" 
value="RANDOM_2_LRU" />
                                        <property name="evictionThreshold" 
value="0.6" />
                                        <property name="metricsEnabled" 
value="true" />
                                </bean>
                        </list>
                </property>
        </bean>
</property>

and i am facing issue 
java.lang.IllegalArgumentException
        at sun.misc.Unsafe.allocateMemory(Native Method)
        at
org.apache.ignite.internal.util.GridUnsafe.allocateMemory(GridUnsafe.java:1054)

is issue with configuration or ignite?

Thanks



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Ignite2-0-memory-policy-limit-tp12840.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to