How to config to warm up the cache automatically after restart the cluster

my case:

1, data loaded into IgniteCache

2, restart the cluster

3, expect data to be re-loaded into the IgniteCache, but it doesn't. 

But I can see the wal log file and caches folder with specific cache name
has been created under &IGNITE_HOME/work

Has done following configurations in the ignite config xml.

<property name="persistentStoreConfiguration">
            <bean
class="org.apache.ignite.configuration.PersistentStoreConfiguration"/>
        </property>

        
        <property name="cacheConfiguration">
            <list>
                <bean
class="org.apache.ignite.configuration.CacheConfiguration">
                    <property name="name" value="cache name"/>
                    <property name="backups" value="1"/>

                    <property name="atomicityMode" value="TRANSACTIONAL"/>

                    <property name="writeSynchronizationMode"
value="FULL_SYNC"/>

                    <property name="indexedTypes">
                        <list>
                            <value>java.lang.String</value>
                            <value>xxx.xxx.xxx</value>
                        </list>
                    </property>
                </bean>
            </list>
        </property>

        <property name="binaryConfiguration">
            <bean
class="org.apache.ignite.configuration.BinaryConfiguration">
                <property name="compactFooter" value="false"/>
            </bean>
        </property>





--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/2-1-new-feature-warm-up-the-cache-memory-tp16278.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to