Attached. thanks. Please let me know if you need any additional details. thanks.
On 2 January 2017 at 17:36, dkarachentsev <[email protected]> wrote: > Could you please add ignite-client.xml as well? > > Thanks! > > > > -- > View this message in context: http://apache-ignite-users. > 70518.x6.nabble.com/Affinity-tp9744p9815.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com. >
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> <!-- <bean id ="myService" class="net.juniper.cs.InitialLoadService" /> --> <bean id = "grid1" class="org.apache.ignite.configuration.IgniteConfiguration"> <property name="clientMode" value="true" /> <property name="peerClassLoadingEnabled" value="false" /> <!-- <property name="metricsLogFrequency" value="0" /> --> <property name="communicationSpi"> <bean class="org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi"> <property name="idleConnectionTimeout" value="400000" /> </bean> </property> <!-- Explicitly configure TCP discovery SPI to provide list of initial nodes. --> <property name="discoverySpi"> <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi"> <property name="ipFinder"> <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder"> <property name="addresses"> <list> <value>127.0.0.1:47500..47509</value> </list> </property> </bean> </property> </bean> </property> </bean> </beans>
