checkForEndpointCollision fails for legitimate collisions, CASSANDRA-9765

This commit is contained in:
Stefania Alborghetti 2015-07-10 14:22:32 +08:00
parent 52dbc3f1ba
commit 2c9b490c97
2 changed files with 36 additions and 11 deletions

View File

@ -678,6 +678,16 @@ public class Gossiper implements IFailureDetectionEventListener, GossiperMBean
} }
} }
/**
* A fat client is a node that has not joined the ring, therefore acting as a coordinator only.
* It possesses no data. This method attempts to determine this property, except that for dead nodes
* we cannot tell. (??) We should also check that the node is not shutdown (and possibly other states)
* but due to fear of breaking things I added a new method to do this, isLiveFatClient(), see
* CASSANDRA-9765 for more information.
*
* @param endpoint - the endpoint we need to check
* @return true if it is a fat client
*/
public boolean isFatClient(InetAddress endpoint) public boolean isFatClient(InetAddress endpoint)
{ {
EndpointState epState = endpointStateMap.get(endpoint); EndpointState epState = endpointStateMap.get(endpoint);
@ -688,6 +698,11 @@ public class Gossiper implements IFailureDetectionEventListener, GossiperMBean
return !isDeadState(epState) && !StorageService.instance.getTokenMetadata().isMember(endpoint); return !isDeadState(epState) && !StorageService.instance.getTokenMetadata().isMember(endpoint);
} }
public boolean isLiveFatClient(InetAddress endpoint)
{
return isFatClient(endpoint) && !isShutdownState(endpointStateMap.get(endpoint));
}
private void doStatusCheck() private void doStatusCheck()
{ {
if (logger.isTraceEnabled()) if (logger.isTraceEnabled())
@ -1008,12 +1023,9 @@ public class Gossiper implements IFailureDetectionEventListener, GossiperMBean
public boolean isDeadState(EndpointState epState) public boolean isDeadState(EndpointState epState)
{ {
if (epState.getApplicationState(ApplicationState.STATUS) == null) String state = getApplicationState(epState);
if (state.isEmpty())
return false; return false;
String value = epState.getApplicationState(ApplicationState.STATUS).value;
String[] pieces = value.split(VersionedValue.DELIMITER_STR, -1);
assert (pieces.length > 0);
String state = pieces[0];
for (String deadstate : DEAD_STATES) for (String deadstate : DEAD_STATES)
{ {
if (state.equals(deadstate)) if (state.equals(deadstate))
@ -1024,12 +1036,9 @@ public class Gossiper implements IFailureDetectionEventListener, GossiperMBean
public boolean isSilentShutdownState(EndpointState epState) public boolean isSilentShutdownState(EndpointState epState)
{ {
if (epState.getApplicationState(ApplicationState.STATUS) == null) String state = getApplicationState(epState);
if (state.isEmpty())
return false; return false;
String value = epState.getApplicationState(ApplicationState.STATUS).value;
String[] pieces = value.split(VersionedValue.DELIMITER_STR, -1);
assert (pieces.length > 0);
String state = pieces[0];
for (String deadstate : SILENT_SHUTDOWN_STATES) for (String deadstate : SILENT_SHUTDOWN_STATES)
{ {
if (state.equals(deadstate)) if (state.equals(deadstate))
@ -1038,6 +1047,22 @@ public class Gossiper implements IFailureDetectionEventListener, GossiperMBean
return false; return false;
} }
public boolean isShutdownState(EndpointState epState)
{
return getApplicationState(epState).equals(VersionedValue.SHUTDOWN);
}
private static String getApplicationState(EndpointState epState)
{
if (epState == null || epState.getApplicationState(ApplicationState.STATUS) == null)
return "";
String value = epState.getApplicationState(ApplicationState.STATUS).value;
String[] pieces = value.split(VersionedValue.DELIMITER_STR, -1);
assert (pieces.length > 0);
return pieces[0];
}
void applyStateLocally(Map<InetAddress, EndpointState> epStateMap) void applyStateLocally(Map<InetAddress, EndpointState> epStateMap)
{ {
for (Entry<InetAddress, EndpointState> entry : epStateMap.entrySet()) for (Entry<InetAddress, EndpointState> entry : epStateMap.entrySet())

View File

@ -456,7 +456,7 @@ public class StorageService extends NotificationBroadcasterSupport implements IE
MessagingService.instance().listen(FBUtilities.getLocalAddress()); MessagingService.instance().listen(FBUtilities.getLocalAddress());
Gossiper.instance.doShadowRound(); Gossiper.instance.doShadowRound();
EndpointState epState = Gossiper.instance.getEndpointStateForEndpoint(FBUtilities.getBroadcastAddress()); EndpointState epState = Gossiper.instance.getEndpointStateForEndpoint(FBUtilities.getBroadcastAddress());
if (epState != null && !Gossiper.instance.isDeadState(epState) && !Gossiper.instance.isFatClient(FBUtilities.getBroadcastAddress())) if (epState != null && !Gossiper.instance.isDeadState(epState) && !Gossiper.instance.isLiveFatClient(FBUtilities.getBroadcastAddress()))
{ {
throw new RuntimeException(String.format("A node with address %s already exists, cancelling join. " + throw new RuntimeException(String.format("A node with address %s already exists, cancelling join. " +
"Use cassandra.replace_address if you want to replace this node.", "Use cassandra.replace_address if you want to replace this node.",