awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 dépôts

Awesome GitHub RepositoriesTransaction Orderers

Systems that preserve the commit sequence of database operations during event streaming.

Distinct from Ordered Data Structures: Distinct from Ordered Data Structures: focuses on maintaining the chronological order of transaction log entries rather than key-value insertion order.

Explore 4 awesome GitHub repositories matching data & databases · Transaction Orderers. Refine with filters or upvote what's useful.

Awesome Transaction Orderers GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • apple/foundationdbAvatar de apple

    apple/foundationdb

    16,446Voir sur GitHub↗

    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

    Assigns unique commit versions to transaction batches to guarantee a linear order of durability.

    C++aciddistributed-databasefoundationdb
    Voir sur GitHub↗16,446
  • debezium/debeziumAvatar de debezium

    debezium/debezium

    12,421Voir sur GitHub↗

    Debezium is a distributed change data capture platform that streams row-level database modifications as real-time events. By parsing database transaction logs, the system broadcasts structural and data changes to message brokers, enabling reactive processing and data integration across distributed architectures. The platform utilizes log-based capture to extract modifications directly from transaction logs, ensuring minimal impact on source system performance while maintaining the original commit order of operations. It employs database-specific connector adapters to translate proprietary bin

    Maintains the original commit order of database operations to preserve data integrity during streaming.

    Javaapache-kafkacdcchange-data-capture
    Voir sur GitHub↗12,421
  • smartcontractkit/chainlinkAvatar de smartcontractkit

    smartcontractkit/chainlink

    8,222Voir sur GitHub↗

    Chainlink is a decentralized oracle network that connects smart contracts to off-chain data, computation, and real-world systems. It provides a secure and reliable infrastructure for blockchain applications to access external information, execute automated workflows, and interact with other blockchains. The network is secured by a staking-based model where node operators lock LINK tokens as collateral, which can be slashed for poor performance, incentivizing honest and accurate data delivery. The platform distinguishes itself through a comprehensive set of capabilities that extend beyond basi

    Encrypts transaction payloads before ordering to prevent front-running by nodes with early visibility.

    Goblockchainchainlinkethereum
    Voir sur GitHub↗8,222
  • cri-o/cri-oAvatar de cri-o

    cri-o/cri-o

    5,629Voir sur GitHub↗

    CRI-O is an open-source container runtime that implements the Kubernetes Container Runtime Interface (CRI) to manage container images, pods, and containers on cluster nodes using OCI-compatible runtimes. It serves as a node-level container manager that handles image pulling, container lifecycle, and resource monitoring for Kubernetes clusters, running containers according to the Open Container Initiative specifications. The runtime distinguishes itself through live configuration reloading that applies changes to runtime definitions, registry mirrors, and TLS certificates without restarting th

    Preserves pod creation order across runtime restarts to maintain a stable pod list.

    Go
    Voir sur GitHub↗5,629
  1. Home
  2. Data & Databases
  3. Ordered Data Structures
  4. Transaction Orderers

Explorer les sous-tags

  • Encrypted Transaction OrderingEncrypts transaction payloads before ordering so nodes cannot see details and front-run based on early visibility. **Distinct from Transaction Orderers:** Distinct from Transaction Orderers: adds encryption to prevent front-running, not just preserving commit sequence.
  • Ordered Pod Scaling1 sous-tagCreates pods in ascending order and deletes or updates them in descending order to maintain stability in clustered services. **Distinct from Transaction Orderers:** Distinct from Transaction Orderers: focuses on the ordered lifecycle of pods in a cluster, not the commit sequence of database transactions.