Data Replica Manager Using Latency-Aware Write Caching

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

Datacenters face challenges in achieving high capacity, high performance, low power usage, and low cost while ensuring data redundancy and reliability, particularly in replicating data across multiple storage nodes to handle hardware failures and service interruptions.

Innovation Solution

A method for data storage that involves determining latency distances to select preferred replica nodes, using a solid-state drive (SSD) tier as a cache tier and a hard disk drive (HDD) tier as a backend, and implementing load balancing and fault tolerance by migrating data among storage tiers without pausing the system, and utilizing a fusion cache technique for seamless data migration.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Reliability

If data is replicated across multiple storage nodes to ensure redundancy and reliability, then data availability and fault tolerance are improved, but system complexity and storage costs increase

Engineering Contradiction:
Improvedata availabilityVSAvoidsystem complexity
Core Design Contradiction:
ReliabilityVSDevice complexity

Solution Approach 1:

The system implements self-healing through automatic detection and recovery mechanisms. When a storage node fails, the system automatically detects the failure, identifies healthy replica nodes, and restores data without human intervention. The write-caching mechanism also provides self-protection by maintaining data in memory during replication, preventing data loss during network issues.

Inventive Principle:
Principle #25Self-service

Solution Approach 2:

The system performs preliminary actions by creating write-cached replicas before actual write operations complete. Data is pre-replicated to healthy nodes in the background, and the system proactively monitors node health to identify potential failures before they occur, enabling preventive data protection.

Inventive Principle:
Principle #10Preliminary action

2Reliability

If data is replicated synchronously across multiple nodes, then data consistency is improved, but write performance and latency are worsened

Engineering Contradiction:
Improvedata consistencyVSAvoidwrite performance
Core Design Contradiction:
ReliabilityVSProductivity

Solution Approach 1:

The replication process is segmented into asynchronous stages. The primary node accepts writes and immediately returns success to the client, while replication to secondary nodes occurs in the background. This segmentation allows the primary operation to complete quickly while maintaining eventual consistency through subsequent replication events.

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

The write-cache serves as an intermediary layer between the primary node and replica nodes. It buffers write operations, allowing the primary node to acknowledge writes quickly while the cache handles the slower replication process to secondary nodes, thus mediating between performance requirements and consistency requirements.

Inventive Principle:
Principle #24Intermediary (Mediator)

3Reliability

If the entire dataset is copied during failover to ensure data recovery, then reliability is improved, but recovery time and system performance are worsened

Engineering Contradiction:
Improvedata recoveryVSAvoidrecovery time
Core Design Contradiction:
ReliabilityVSLoss of time

Solution Approach 1:

The system performs preliminary replication by maintaining write-cached copies of data on multiple healthy replica nodes before failures occur. When a node fails, these pre-replicated copies are immediately activated, eliminating the need for time-consuming full dataset copies during failover.

Inventive Principle:
Principle #10Preliminary action

Solution Approach 2:

Instead of copying the entire dataset during failover, the system performs partial action by only replicating and restoring the specific data blocks that are actually needed. This selective restoration significantly reduces recovery time while maintaining data integrity.

Inventive Principle:
Principle #16Partial or excessive action

4Adaptability or versatility

If data is migrated between storage tiers to balance load, then system adaptability is improved, but I/O operations and processing time are worsened

Engineering Contradiction:
Improveload balancingVSAvoidprocessing time
Core Design Contradiction:
Adaptability or versatilityVSLoss of time

Solution Approach 1:

The system implements periodic load balancing by scheduling data migration between storage tiers at off-peak times. Health checks and load distribution adjustments occur periodically rather than in real-time, reducing the impact on I/O operations while maintaining system adaptability to changing conditions.

Inventive Principle:
Principle #19Periodic action

Data Source

PatentUS12568153B2Automatic data replica manager in distributed caching and data processing systems
Publication Date: 2026.03.03 SAMSUNG ELECTRONICS CO LTD
  • US12568153B2 patent drawing
  • US12568153B2 patent drawing
  • US12568153B2 patent drawing

AI summary

A method of data storage includes determining a latency distance from a primary node to each of two or more replica nodes, choosing a preferred replica node of the two or more replica nodes based on the determined latency distances, and write-caching data into the preferred replica node.