Its 2.7.6 and configuration is as follows:
<bean id="igniteContainer"
class="com.pointillist.grid.ignite.IgniteSpringBean"
depends-on="dataSource">
<property name="configuration">
<bean id="ignite.cfg"
class="org.apache.ignite.configuration.IgniteConfiguration">
<property name="workDirectory"
value="${work.space}"></property>
<property name="communicationSpi">
<bean
class="org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi">
<property name="connectTimeout"
value="10000"></property>
<property
name="socketWriteTimeout" value="30000"></property>
</bean>
</property>
<property name="failureDetectionTimeout"
value="120000"></property>
<property name="rebalanceThreadPoolSize"
value="8"></property>
<property name="publicThreadPoolSize"
value="64" />
<property name="systemThreadPoolSize"
value="32" />
<property name="dataStorageConfiguration">
<bean
class="org.apache.ignite.configuration.DataStorageConfiguration">
<property
name="writeThrottlingEnabled" value="true"></property>
<property
name="defaultDataRegionConfiguration">
<bean
class="org.apache.ignite.configuration.DataRegionConfiguration">
<property
name="initialSize" value="#{512L * 1024 *
1024}"></property>
<property
name="maxSize" value="#{20L * 1024 * 1024 * 1024}" />
<property
name="persistenceEnabled" value="true" />
</bean>
</property>
<property
name="dataRegionConfigurations">
<list>
<bean
class="org.apache.ignite.configuration.DataRegionConfiguration">
<property name="name" value="indexMainDataRegion" />
<property name="initialSize" value="#{512L * 1024 * 1024}" />
<property name="maxSize" value="#{20L * 1024 * 1024 * 1024}" />
<property name="persistenceEnabled" value="true" />
</bean>
<bean
class="org.apache.ignite.configuration.DataRegionConfiguration">
<property name="name" value="indexDtlDataRegion" />
<property name="initialSize" value="#{512L * 1024 * 1024}" />
<property name="maxSize" value="#{20L * 1024 * 1024 * 1024}" />
<property name="persistenceEnabled" value="true" />
</bean>
</list>
</property>
<property name="pageSize"
value="#{4 * 1024}" />
<property name="storagePath"
value="${grid.data}" />
<property name="walPath"
value="${grid.wal}" />
<property name="walArchivePath"
value="${grid.wal}" />
<property name="walMode"
value="BACKGROUND" />
<property
name="walFlushFrequency" value="10000"></property>
</bean>
</property>
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/
