awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 रिपॉजिटरी

Awesome GitHub RepositoriesData Range Distribution

The mapping of contiguous key ranges to specific storage nodes in a distributed system.

Distinct from Data Range Selection: Shortlist candidates focus on UI selection or bit-mapping, not the architectural distribution of key ranges across servers.

Explore 2 awesome GitHub repositories matching data & databases · Data Range Distribution. Refine with filters or upvote what's useful.

Awesome Data Range Distribution GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • apple/foundationdbapple का अवतार

    apple/foundationdb

    16,446GitHub पर देखें↗

    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

    Maps key ranges to specific storage servers and provides these mappings to clients on demand.

    C++aciddistributed-databasefoundationdb
    GitHub पर देखें↗16,446
  • flike/kingshardflike का अवतार

    flike/kingshard

    6,414GitHub पर देखें↗

    Kingshard is a MySQL database proxy and sharding middleware that routes SQL traffic between clients and multiple database nodes. It functions as a load balancer, read-write splitter, and SQL query firewall to manage how data is accessed and distributed across a database infrastructure. The system implements data sharding using hash, range, or date strategies to split tables across multiple nodes. It enables read-write splitting by directing data modification requests to a master node while distributing read-only queries across a pool of slave replicas. The proxy provides traffic management t

    Allocates data to specific nodes based on predefined key ranges to maintain logical data ordering.

    Gokingshardmysqlmysql-proxy
    GitHub पर देखें↗6,414
  1. Home
  2. Data & Databases
  3. Data Range Distribution

सब-टैग एक्सप्लोर करें

  • Parallel Range FetchingSplitting large data ranges into sub-ranges based on partition boundaries for parallel retrieval. **Distinct from Data Range Distribution:** Focuses on the parallelization of the fetch operation across multiple clients, not just the mapping of ranges to nodes.