*Server configuration*

<?xml version="1.0" encoding="UTF-8"?>



<beans xmlns="http://www.springframework.org/schema/beans";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
        xsi:schemaLocation="
       http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd";>

        <bean class="org.apache.ignite.configuration.IgniteConfiguration">
                <property name="clientMode" value="true" />
                <property name="stripedPoolSize" value="12" />
                <property name="systemThreadPoolSize" value="12" />
                <property name="communicationSpi">
                        <bean
class="org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi">
                                <property name="messageQueueLimit" value="1024" 
/>
                                <property name="slowClientQueueLimit" 
value="100" />
                        </bean>
                </property>
                <property name="failureDetectionTimeout" value="30000" />
                <property name="discoverySpi">
                        <bean 
class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
                                <property name="socketTimeout" value="30000" />
                                <property name="networkTimeout" value="30000" />
                                <property name="reconnectCount" value="5" />
                                <property name="ipFinder">
                                        <bean
                                        
class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
                                                <property name="addresses">
                                                        <list>
                                                                
<value>host1:47500..47509</value>
                                                                
<value>host2:47500..47509</value>
                                                        </list>
                                                </property>
                                        </bean>
                                </property>
                        </bean>
                </property>
        </bean>
</beans>
 
 



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Error-Commit-produced-a-runtime-exception-tp15768p15801.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to