You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
When a master node hang for while and new master has been elected for the group, if the old master node is able restore itself then it will start a collision resolving with the current new master, this process never ends and go on for ever as both nodes insist on becoming master.
The problem is likely related to line number 1007 if (madv.getID().compareTo(adv.getID()) >= 0)
The test here does not much the check done in checkMaster mothod at line 249 if (isSeniorMember(manager.getSystemAdvertisement(), systemAdv))
I this both method should have the same check which is isSeniorMember
You can reproduce the issue by suspending the gms threads in the master node untill a new master is elected, and the resume, you will notice the infinite messsage exchange between two masters
The text was updated successfully, but these errors were encountered:
Hello,
When a master node hang for while and new master has been elected for the group, if the old master node is able restore itself then it will start a collision resolving with the current new master, this process never ends and go on for ever as both nodes insist on becoming master.
The problem is likely related to line number 1007
if (madv.getID().compareTo(adv.getID()) >= 0)
The test here does not much the check done in checkMaster mothod at line 249
if (isSeniorMember(manager.getSystemAdvertisement(), systemAdv))
I this both method should have the same check which is isSeniorMember
You can reproduce the issue by suspending the gms threads in the master node untill a new master is elected, and the resume, you will notice the infinite messsage exchange between two masters
The text was updated successfully, but these errors were encountered: