[
https://issues.apache.org/jira/browse/IGNITE-6274?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Vyacheslav Koptilin updated IGNITE-6274:
----------------------------------------
Description:
Steps to reproduce:
1. Enable Apache Ignite Persistent Store.
{code:java}
<property name="persistentStoreConfiguration">
<bean
class="org.apache.ignite.configuration.PersistentStoreConfiguration"/>
</property>
{code}
2. Set the size of the default memory region (for example, 80% - 90% of RAM
available on a local machine)
{code:java}
<property name="memoryConfiguration">
<bean class="org.apache.ignite.configuration.MemoryConfiguration">
<property name="defaultMemoryPolicySize" value="#{14L * 1024 *
1024 * 1024}"/>
</bean>
</property>
{code}
3. Start two server nodes (-Xms12292m -Xmx12292m)
4. Start client node and try to activate cluster
{code:java}
Ignition.setClientMode(true);
Ignite ignite =
Ignition.start("examples/config/persistentstore/example-persistent-store.xml");
ignite.active(true);
{code}
This issue was mentioned on the user list:
http://apache-ignite-users.70518.x6.nabble.com/ignite-active-true-blocking-forever-tc16346.html
was:
Steps to reproduce:
1. Enable Apache Ignite Persistent Store.
{code:java}
<property name="persistentStoreConfiguration">
<bean
class="org.apache.ignite.configuration.PersistentStoreConfiguration"/>
</property>
{code}
2. Set the size of the default memory region (for example, 80% - 90% of RAM
available on a local machine)
{code:java}
<property name="memoryConfiguration">
<bean class="org.apache.ignite.configuration.MemoryConfiguration">
<property name="defaultMemoryPolicySize" value="#{14L * 1024 *
1024 * 1024}"/>
</bean>
</property>
{code}
3. Start two server nodes (-Xms12292m -Xmx12292m)
4. Start client node and try to activate cluster
{code:java}
Ignition.setClientMode(true);
Ignite ignite =
Ignition.start("examples/config/persistentstore/example-persistent-store.xml");
ignite.active(true);
{code}
> Cluster activation may hang because of OutOfMemoryError.
> --------------------------------------------------------
>
> Key: IGNITE-6274
> URL: https://issues.apache.org/jira/browse/IGNITE-6274
> Project: Ignite
> Issue Type: Bug
> Components: general
> Affects Versions: 2.1
> Reporter: Vyacheslav Koptilin
> Attachments: example-persistent-store.xml, server.log
>
>
> Steps to reproduce:
> 1. Enable Apache Ignite Persistent Store.
> {code:java}
> <property name="persistentStoreConfiguration">
> <bean
> class="org.apache.ignite.configuration.PersistentStoreConfiguration"/>
> </property>
> {code}
> 2. Set the size of the default memory region (for example, 80% - 90% of RAM
> available on a local machine)
> {code:java}
> <property name="memoryConfiguration">
> <bean class="org.apache.ignite.configuration.MemoryConfiguration">
> <property name="defaultMemoryPolicySize" value="#{14L * 1024
> * 1024 * 1024}"/>
> </bean>
> </property>
> {code}
> 3. Start two server nodes (-Xms12292m -Xmx12292m)
> 4. Start client node and try to activate cluster
> {code:java}
> Ignition.setClientMode(true);
> Ignite ignite =
> Ignition.start("examples/config/persistentstore/example-persistent-store.xml");
> ignite.active(true);
> {code}
> This issue was mentioned on the user list:
> http://apache-ignite-users.70518.x6.nabble.com/ignite-active-true-blocking-forever-tc16346.html
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)