Distributed Database Atoms for Scalable Transaction Processing

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

Existing database management systems face challenges in scalability, high availability, and efficient transaction processing over a wide geographic area without dedicated high-speed communications paths, while maintaining atomicity, consistency, isolation, and durability, especially as they handle increasing transaction rates and large data volumes.

Innovation Solution

A distributed database management system is implemented with a network of nodes that use atom objects to fragment and replicate data and metadata, allowing only necessary data to be stored in transactional nodes for queries, and replicating changes peer-to-peer across nodes, enabling asynchronous communication and efficient data management without the need for high-speed connections.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Productivity

If a distributed database system is implemented to improve scalability and availability, then the system can handle larger data volumes and more users, but the complexity of managing consistency and transactions across multiple nodes increases

Engineering Contradiction:
Improvetransaction processing rateVSAvoidsystem complexity
Core Design Contradiction:
ProductivityVSDevice complexity

Solution Approach 1:

The database system is segmented into multiple autonomous nodes that can independently process transactions. Each node maintains local data and can serve local transactions without requiring coordination with other nodes, thereby improving transaction processing rate while keeping individual node complexity manageable

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

A two-phase commit protocol is introduced as an intermediary mechanism to coordinate transactions across distributed nodes. This mediator ensures consistency and atomicity across nodes without requiring complex direct peer-to-peer communication between all nodes, thus managing system complexity

Inventive Principle:
Principle #24Intermediary (Mediator)

2Reliability

If data is replicated across multiple nodes to improve availability and fault tolerance, then the system remains accessible even if some nodes fail, but the overhead for maintaining synchronization increases

Engineering Contradiction:
ImproveavailabilityVSAvoidcommunication overhead
Core Design Contradiction:
ReliabilityVSLoss of energy

Solution Approach 1:

Each node maintains local copies of data and can serve local read requests independently without communicating with other nodes. This local autonomy improves availability while minimizing communication overhead, as nodes only communicate when necessary for transaction coordination or data replication

Inventive Principle:
Principle #3Local quality

3Reliability

If traditional locking mechanisms are used to ensure consistency in multi-user systems, then data integrity is maintained, but the overhead for managing locks becomes significant and can block transactions

Engineering Contradiction:
Improvedata consistencyVSAvoidtransaction delay
Core Design Contradiction:
ReliabilityVSLoss of time

Solution Approach 1:

The system creates multiple versions of data records across different nodes and time periods. Instead of using locks to prevent concurrent access, the system allows multiple transactions to operate on different versions simultaneously, with each version tagged with metadata indicating its validity period, thus eliminating lock overhead and transaction delays while maintaining consistency

Inventive Principle:
Principle #26Copying

Data Source

PatentEP2548135B1Database management system
Publication Date: 2020.05.13 NUODB INC
  • EP2548135B1 patent drawingFigure 1
  • EP2548135B1 patent drawingFigure 2
  • EP2548135B1 patent drawingFigure 3

AI summary

A multi-user, elastic, on-demand, distributed relational database management system. The database is fragmented into distributed objects called atoms. Any change to a copy of an atom at one location is replicated to all other locations containing a copy of that atom. Transactional managers operate to satisfy the properties of atomicity, consistency, isolation and durability.