awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
yedf avatar

yedf/dtm

0
View on GitHub↗
10,885 نجوم·1,000 تفرعات·Go·BSD-3-Clause·4 مشاهداتd.dtm.pub↗

Dtm

dtm هو إطار عمل للمعاملات الموزعة ومنسق لتدفق العمل مصمم لإدارة اتساق البيانات عبر الخدمات المصغرة. يعمل كمنسق مركزي يقوم بمزامنة المعاملات الموزعة ويدير الحالة وتدفق التنفيذ لتسلسلات معقدة من المهام الموزعة.

ينفذ إطار العمل العديد من أنماط التنسيق، بما في ذلك Saga وTCC وXA، لمنع أخطاء المزامنة. ويوفر بشكل خاص منسق معاملات متعدد اللغات لمزامنة العمليات عبر الخدمات المكتوبة بلغات برمجة مختلفة ويستخدم صندوق بريد صادر (outbox) موثوق للرسائل لربط تحديثات قاعدة البيانات بإرسال الرسائل.

تغطي قدراته استعادة الأنظمة الموزعة من خلال عمليات التراجع (rollbacks) للمعاملات التعويضية، وتنسيق الالتزام ثنائي المرحلة، وتسليم الرسائل لمرة واحدة بالضبط. وتدعم البنية التحتية التوسع الأفقي في السعة وتكوينات التوافر العالي للحفاظ على الاستقرار مع زيادة أحجام الطلبات.

Features

  • Business Process Orchestration - Functions as a distributed workflow orchestrator that manages the execution flow of complex business processes.
  • Distributed Workflow Orchestrators - Coordinates complex sequences of distributed tasks while managing their execution flow and state.
  • Reliable Message Delivery - Implements exactly-once message delivery using a reliable messaging outbox to maintain data integrity across microservices.
  • Automatic Compensation Mechanisms - Automatically invokes compensating operations for sub-transactions to restore system consistency after a failure.
  • Distributed State Recovery - Automatically invokes compensating operations to roll back failed sub-transactions and restore system consistency.
  • Distributed Transaction Coordinators - Provides a centralized coordinator to manage global transaction lifecycles and maintain data synchronization across microservices.
  • Polyglot Coordinators - Provides a centralized coordinator that synchronizes distributed transactions across services written in different languages.
  • Saga Coordinators - Coordinates saga-based distributed transactions by executing compensating transactions in reverse order during failures.
  • Two-Phase Commit Protocols - Manages a two-phase commit protocol to ensure atomic updates across distributed data stores.
  • Distributed Transaction Management - Ensures data consistency across microservices using distributed transaction patterns like Saga, TCC, and XA.
  • Try-Confirm-Cancel Implementations - Coordinates the Try, Confirm, and Cancel phases to manage resource reservation in distributed business operations.
  • Consistency Frameworks - Provides a comprehensive framework for maintaining data integrity and synchronization across distributed services.
  • State Machine Orchestrators - Uses a persistent state machine to track the lifecycle and ensure consistent progress of distributed transactions.
  • Transactional Outbox Patterns - Implements the transactional outbox pattern to ensure atomicity between database updates and event publishing.
  • Domain Workflow Orchestration - Orchestrates complex sequences of distributed tasks to fulfill specific business use cases.
  • Horizontal Scaling Deployments - Supports horizontal capacity expansion and high availability to maintain stability as request volumes increase.
  • Event Driven Messaging - Provides an event-driven messaging layer to trigger asynchronous task execution across remote microservices.
  • Outbox Pattern Implementations - Couples database updates with message dispatching to ensure exactly-once delivery and prevent data loss.
  • Database Tools - Distributed transaction management service.

سجل النجوم

مخطط تاريخ النجوم لـ yedf/dtmمخطط تاريخ النجوم لـ yedf/dtm

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

بدائل مفتوحة المصدر لـ Dtm

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع Dtm.
  • apache/incubator-seataالصورة الرمزية لـ apache

    apache/incubator-seata

    25,984عرض على GitHub↗

    Seata is a distributed transaction coordinator designed to ensure data consistency and atomicity across microservices. It provides a centralized framework for managing global transactions, preventing partial data updates across different databases and services. The project implements multiple transaction modes to balance consistency and performance. This includes an automatic mode that uses rollback logs to coordinate compensation without modifying business logic, a try-confirm-cancel pattern for resources lacking native ACID support, and a saga orchestration engine for managing long-lived bu

    Javaatconsistencydistributed-transaction
    عرض على GitHub↗25,984
  • dtm-labs/dtmالصورة الرمزية لـ dtm-labs

    dtm-labs/dtm

    10,881عرض على GitHub↗

    dtm is a distributed transaction framework and polyglot transaction coordinator designed to maintain data consistency across microservices. It functions as a Saga orchestration engine and a two-phase message coordinator, ensuring that multi-service operations either succeed completely or roll back to a consistent state. The project distinguishes itself by supporting multiple consistency patterns, including Saga, TCC, XA, and outbox patterns, allowing users to select the appropriate model for their specific application requirements. It provides a polyglot integration layer via HTTP and gRPC, e

    Gocadencecsharpdatabase
    عرض على GitHub↗10,881
  • dromara/hmilyالصورة الرمزية لـ dromara

    dromara/hmily

    4,172عرض على GitHub↗

    Hmily is a distributed transaction framework and data consistency manager designed to maintain state across multiple services. It operates as a coordinator that tracks transaction states across remote procedure calls to manage nested operations and ensure atomic completions. The project implements the SAGA pattern to orchestrate long-running business processes through a sequence of local transactions and automated compensating actions. It distinguishes itself by automating the generation and execution of rollback scripts for relational databases to recover from business exceptions and restore

    Javadubbomotanspring
    عرض على GitHub↗4,172
  • eventuate-tram/eventuate-tram-sagasالصورة الرمزية لـ eventuate-tram

    eventuate-tram/eventuate-tram-sagas

    1,083عرض على GitHub↗

    Eventuate Tram Sagas is a framework for managing distributed transactions across microservices. It functions as an event-driven workflow engine that coordinates complex business processes by executing sequences of local operations and maintaining state transitions across independent service boundaries. The framework implements the transactional outbox pattern to ensure atomicity between database updates and message publishing. It coordinates distributed workflows through asynchronous messaging, utilizing a message broker to decouple services and guarantee reliable delivery of commands and rep

    Java
    عرض على GitHub↗1,083
عرض جميع البدائل الـ 30 لـ Dtm→

الأسئلة الشائعة

ما هي وظيفة yedf/dtm؟

dtm هو إطار عمل للمعاملات الموزعة ومنسق لتدفق العمل مصمم لإدارة اتساق البيانات عبر الخدمات المصغرة. يعمل كمنسق مركزي يقوم بمزامنة المعاملات الموزعة ويدير الحالة وتدفق التنفيذ لتسلسلات معقدة من المهام الموزعة.

ما هي الميزات الرئيسية لـ yedf/dtm؟

الميزات الرئيسية لـ yedf/dtm هي: Business Process Orchestration, Distributed Workflow Orchestrators, Reliable Message Delivery, Automatic Compensation Mechanisms, Distributed State Recovery, Distributed Transaction Coordinators, Polyglot Coordinators, Saga Coordinators.

ما هي البدائل مفتوحة المصدر لـ yedf/dtm؟

تشمل البدائل مفتوحة المصدر لـ yedf/dtm: apache/incubator-seata — Seata is a distributed transaction coordinator designed to ensure data consistency and atomicity across microservices.… dtm-labs/dtm — dtm is a distributed transaction framework and polyglot transaction coordinator designed to maintain data consistency… dromara/hmily — Hmily is a distributed transaction framework and data consistency manager designed to maintain state across multiple… eventuate-tram/eventuate-tram-sagas — Eventuate Tram Sagas is a framework for managing distributed transactions across microservices. It functions as an… seata/seata — Seata is a distributed transaction coordinator and consistency framework designed to maintain data integrity across… qnjr-group/easytransaction — EasyTransaction is a distributed transaction framework that coordinates data consistency and failover across…