Santoso created IGNITE-12025:
--------------------------------
Summary: a node fails to rejoin in simple 2 cluster nodes (version 2.7.5)
Key: IGNITE-12025
URL:
https://issues.apache.org/jira/browse/IGNITE-12025 Project: Ignite
Issue Type: Bug
Components: aws
Affects Versions: 2.7.5
Environment: aws ec2
<?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="peerClassLoadingEnabled" value="false"/>
<property name="failureDetectionTimeout" value="30000"/>
<property name="discoverySpi">
<bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
<property name="networkTimeout" value="15000"></property>
<property name="socketTimeout" value="30000"></property>
<property name="ipFinder">
<bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
<property name="addresses">
<list>
<value>node1:47500</value>
<value>node2:47500</value>
</list>
</property>
</bean>
</property>
</bean>
</property>
</bean>
</beans>
Reporter: Santoso
create a 2 nodes cluster with version 2.7.5 in aws
stop node1 then restart node1, node1 fails to rejoin the cluster (instead split brain occurs)
tested with 2.7.0 and 2.7.5.
issues never occurred in 2.7.0
ignite process runs inside docker for both tests.
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)