1 repository
Implementing concurrent, ordered queue operations across a distributed system using keyspace ranges and atomic transactions.
Distinct from Queue Implementations: Specifically covers the distribution of the queue across a cluster, whereas the parent covers general queue structures.
Explore 1 awesome GitHub repository matching software engineering & architecture · Distributed. Refine with filters or upvote what's useful.
FoundationDB is an ACID-compliant distributed transactional key-value store. It functions as a scalable database engine that ensures strict serializability and data consistency across a cluster of servers using a shared-nothing architecture. The system is distinguished by its multi-region replication capabilities, allowing data to be synchronized across different datacenters for high availability and disaster recovery. It utilizes optimistic concurrency control to manage distributed transactions and employs a majority-based coordination system to maintain cluster state. The platform provides
Manages ordered data items using subspaces and range reads to support concurrent enqueue and dequeue operations.