WAL mode is default one, all caches are FULL_ASYNC

...and now I see one of my Ignite servers updated WAL files but other one
still have 19th last-modification-time
it looks like WAL files are updated once per day

<bean class="org.apache.ignite.configuration.CacheConfiguration">
                    <property name="name" value="RefreshToken"/>
                    <property name="dataRegionName"
value="auth_durable_region"/>
                    <property name="atomicityMode" value="ATOMIC"/>
                    <property name="writeSynchronizationMode"
value="FULL_ASYNC"/>
                    <property name="cacheMode" value="PARTITIONED"/>
                    <property name="backups" value="1"/>
                    <property name="eagerTtl" value="true"/>
                </bean>

here is my data storage config:

<property name="dataStorageConfiguration">
            <bean
class="org.apache.ignite.configuration.DataStorageConfiguration">
                <property name="metricsEnabled" value="true" />
                <property name="storagePath" value="d:\\ignite-data"/>
                <property name="walPath" value="f:\\ignite-wal"/>
                <property name="walArchivePath"
value="f:\\ignite-wal\\archive"/>
                <property name="defaultDataRegionConfiguration">
                    <bean
class="org.apache.ignite.configuration.DataRegionConfiguration">
                        <property name="name" value="default_mem_region"/>
                        <property name="persistenceEnabled" value="false"/>
                        <property name="maxSize" value="#{4L * 1024 * 1024
* 1024}"/> <!-- 4 GB -->
                        <property name="metricsEnabled" value="true" />
                    </bean>
                </property>
                <property name="dataRegionConfigurations">
                    <list>
                        <bean
class="org.apache.ignite.configuration.DataRegionConfiguration">
                            <property name="name"
value="auth_durable_region"/>
                            <property name="persistenceEnabled"
value="true"/>
                            <property name="maxSize" value="#{4L * 1024 *
1024 * 1024}"/> <!-- 4 GB -->
                            <property name="metricsEnabled" value="true"
/>
                        </bean>
                    </list>
                </property>
            </bean>
        </property>


On Wed, Jun 20, 2018 at 11:51 AM, dkarachentsev <dkarachent...@gridgain.com>
wrote:

> Hi,
>
> What is your configuration? Check WAL mode and path to persistence.
>
> Thanks!
> -Dmitry
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>

Reply via email to