Quorum-Based Arbitration for Cluster Node Failure Detection

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

In distributed computing environments, arbitration failures can occur when an arbitrator goes down, leading to difficulties in node failure recovery and inefficient communication channel detection, as existing mechanisms rely on a single arbitrator or inadequate timeout settings.

Innovation Solution

Implementing a method that uses a plurality of arbitrators to require a quorum for arbitration decisions, designating preferred nodes, and employing multiple timeouts (suspend and arbitration timeouts) to manage communication failures and optimize recovery times.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Reliability

If an arbitrator waits for a predetermined amount of time after receiving an arbitration request, then more communication channel problems can be detected, but the time for node failure recovery increases

Engineering Contradiction:
Improvecommunication channel problem detectionVSAvoidnode failure recovery time
Core Design Contradiction:
ReliabilityVSLoss of time

Solution Approach 1:

The arbitration process is segmented into multiple independent arbitration instances, each handling specific lease relationships. Multiple arbitrators are introduced to distribute the arbitration load and provide parallel processing paths, allowing the system to detect communication issues across different channels simultaneously without requiring any single arbitrator to wait indefinitely.

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

The system dynamically adjusts timeout parameters based on the arbitration state. When an arbitration request is pending, timeout values are modified to balance detection sensitivity with recovery speed. The arbitrator can transition between different waiting states with different timeout characteristics, allowing adaptive response to communication channel conditions.

Inventive Principle:
Principle #35Parameter changes

2Device complexity

If a single arbitrator is used for arbitration, then the system is simpler to manage, but the system becomes vulnerable to arbitration failures when the arbitrator goes down

Engineering Contradiction:
Improvearbitration system structureVSAvoidarbitration availability
Core Design Contradiction:
Device complexityVSReliability

Solution Approach 1:

The arbitration function is segmented across multiple independent arbitrators rather than concentrated in a single arbitrator. Each arbitrator handles specific arbitration requests independently, creating a distributed arbitration system that maintains simplicity at the individual arbitrator level while achieving high availability through redundancy.

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

Node agents act as intermediaries between nodes and arbitrators, managing the complexity of communicating with multiple arbitrators. The node agent coordinates arbitration requests across multiple arbitrators and synthesizes their responses, shielding the core arbitration logic from the complexity of multi-arbitrator coordination.

Inventive Principle:
Principle #24Intermediary (Mediator)

3Productivity

If the arbitrator declares a node down quickly, then node failure recovery is faster, but communication channel problems may be misidentified as node failures

Engineering Contradiction:
Improvefailure recovery speedVSAvoidfailure detection accuracy
Core Design Contradiction:
ProductivityVSReliability

Solution Approach 1:

Different arbitrators can apply different evaluation criteria and timeout thresholds based on their local knowledge of communication channels and node behavior patterns. This allows the system to make rapid declarations for well-understood failure modes while applying more conservative, accurate detection for ambiguous cases, achieving both speed and accuracy in different contexts.

Inventive Principle:
Principle #3Local quality

Data Source

PatentUS9146794B2Enhanced arbitration protocol for nodes in a cluster
Publication Date: 2015.09.29 MICROSOFT TECHNOLOGY LICENSING LLC
  • US9146794B2 patent drawing
  • US9146794B2 patent drawing
  • US9146794B2 patent drawing

AI summary

Arbitrating node failures. A method includes determining at a first node that communication to a second node has been lost. The method further includes sending an arbitration request to a plurality of arbitrators. The method further includes receiving from the plurality of arbitrators a sufficient number of arbitration reply grant messages to have arbitration reply grant messages from a quorum of the arbitrators. As a result of receiving a sufficient number of arbitration reply grant messages to have arbitration reply grant messages from a quorum of the arbitrators, the method further includes declaring the second node down.