OK, I'll upload all the logs when they are ready. By the way, I've just upgraded to Ignite 1.7.0, but it does not help. The problem persists.
Just in case if useful, please find below my Ignite 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 id="ignite.cfg" class="org.apache.ignite.configuration.IgniteConfiguration"> <property name="cacheConfiguration"> <list> <bean class="org.apache.ignite.configuration.CacheConfiguration"> <property name="name" value="session-cache" /> <property name="cacheMode" value="PARTITIONED"/> <property name="backups" value="1"/> <property name="memoryMode" value="OFFHEAP_VALUES"/> <property name="offHeapMaxMemory" value="#{2 * 1024L * 1024L * 1024L}"/> <property name="evictionPolicy"> <bean class="org.apache.ignite.cache.eviction.lru.LruEvictionPolicy"> <property name="maxSize" value="10000"/> </bean> </property> </bean> </list> </property> <property name="discoverySpi"> <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi"> <property name="localPort" value="48100"/> <property name="localPortRange" value="10" /> <property name="ipFinder"> <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.multicast.TcpDiscoveryMulticastIpFinder"> <property name="addresses"> <list> <value>10.3.0.64:48100..48110</value> <value>10.3.0.65:48100..48110</value> <value>172.22.70.110:48100..48110</value> </list> </property> </bean> </property> </bean> </property> <property name="communicationSpi"> <bean class="org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi"> <property name="localPort" value="48500" /> <property name="localPortRange" value="10" /> </bean> </property> <property name="binaryConfiguration"> <bean class="org.apache.ignite.configuration.BinaryConfiguration"> <property name="compactFooter" value="false"/> </bean> </property> </bean> </beans> -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Local-node-seems-to-be-disconnected-from-topology-failure-detection-timeout-is-reached-tp6797p7175.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
