You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "Dick Cavender (Jira)" <ji...@apache.org> on 2019/09/26 18:05:09 UTC

[jira] [Closed] (GEODE-6732) GMSHealthMonitor reports member is not available when self-health check fails

     [ https://issues.apache.org/jira/browse/GEODE-6732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dick Cavender closed GEODE-6732.
--------------------------------

> GMSHealthMonitor reports member is not available when self-health check fails
> -----------------------------------------------------------------------------
>
>                 Key: GEODE-6732
>                 URL: https://issues.apache.org/jira/browse/GEODE-6732
>             Project: Geode
>          Issue Type: Bug
>          Components: core, membership
>            Reporter: Bruce J Schuchardt
>            Assignee: Bruce J Schuchardt
>            Priority: Major
>              Labels: SmallFeature
>             Fix For: 1.10.0
>
>          Time Spent: 50m
>  Remaining Estimate: 0h
>
> GMSHealthMonitor does a self-check if another node isn't responding.  If that check fails it still seems to report that the other node is unavailable.
>  
> {code:java}
> } else {
>   // if this node can survive an availability check then initiate suspicion about
>   // the node that failed the availability check
>   if (doTCPCheckMember(localAddress, this.socketPort, false)) {
>     membersInFinalCheck.remove(mbr);
>     // tell peers about this member and then perform another availability check
>     memberSuspected(localAddress, mbr, reason);
>     initiateSuspicion(mbr, reason);
>     SuspectMembersMessage suspectMembersMessage =
>         new SuspectMembersMessage(Collections.singletonList(localAddress),
>             Collections
>                 .singletonList(new SuspectRequest(mbr, "failed availability check")));
>     suspectMembersMessage.setSender(localAddress);
>     logger.debug("Performing local processing on suspect request");
>     processSuspectMembersRequest(suspectMembersMessage);
>   }
> }
> failed = true;
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)