awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 Repos

Awesome GitHub RepositoriesAsynchronous Message Publishing

Mechanisms for sending data from web endpoints to message brokers for background processing.

Distinct from Message Queues: Focuses on the act of publishing from an HTTP handler, whereas the parent focuses on the general flow and sequencing of messages.

Explore 6 awesome GitHub repositories matching devops & infrastructure · Asynchronous Message Publishing. Refine with filters or upvote what's useful.

Awesome Asynchronous Message Publishing GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • dtm-labs/dtmAvatar von dtm-labs

    dtm-labs/dtm

    10,881Auf GitHub ansehen↗

    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

    Triggers remote service calls asynchronously without requiring dedicated message queue infrastructure.

    Gocadencecsharpdatabase
    Auf GitHub ansehen↗10,881
  • threedotslabs/wild-workouts-go-ddd-exampleAvatar von ThreeDotsLabs

    ThreeDotsLabs/wild-workouts-go-ddd-example

    6,348Auf GitHub ansehen↗

    This project is a reference implementation of Domain-Driven Design, Clean Architecture, and Command Query Responsibility Segregation (CQRS) patterns using the Go programming language. It serves as a sample application to demonstrate how to decouple core domain rules from infrastructure and delivery mechanisms. The system is built as a gRPC microservices architecture, utilizing type-safe communication and service contracts. It implements an event-driven architecture to manage eventual consistency and asynchronous processing, specifically employing the Outbox pattern to ensure reliable messagin

    Publishes asynchronous events to message brokers to enable reactive system changes without blocking requests.

    Goclean-architecturecqrsddd
    Auf GitHub ansehen↗6,348
  • servicestack/servicestackAvatar von ServiceStack

    ServiceStack/ServiceStack

    5,498Auf GitHub ansehen↗

    ServiceStack ist ein hochperformantes .NET-Webframework für den Bau typsicherer APIs unter Verwendung stark typisierter Request- und Response-Objekte. Es fungiert als nachrichtenbasierte API-Engine, die Geschäftslogik von der Transportschicht entkoppelt, wodurch Services über mehrere Protokolle wie HTTP, gRPC und verschiedene Message-Queue-Provider bereitgestellt werden können. Das Framework zeichnet sich durch seinen typsicheren API-Generator aus, der native Client-SDKs und Data Transfer Objects (DTOs) aus Service-Metadaten über mehrere Sprachen hinweg produziert. Es enthält zudem ein verteiltes Service-Gateway für Microservices-Orchestration, ein Code-First-ORM zur direkten Übersetzung von C#-Objekten in Datenbankdatensätze sowie ein zentralisiertes Identitäts- und Zugriffsmanagementsystem für sicheren tokenbasierten Zugriff. Die breitere Funktionspalette deckt asynchrones Messaging und Echtzeit-Event-Streaming durch Pub-Sub und Server-Sent Events ab. Es bietet umfassende Unterstützung für Datenserialisierung in Formaten wie JSON, XML, ProtoBuf und MessagePack, neben integrierten Authentifizierungs-Flows wie JWT, API-Keys und Step-up-Authentifizierung. Zusätzliches Tooling umfasst automatisierte CRUD-API-Generierung, Hintergrund-Job-Ausführung und Vorlagen für administrative Dashboards.

    Sends objects as serialized JSON payloads to dedicated inbox queues for asynchronous processing.

    C#c-sharpcsvframework
    Auf GitHub ansehen↗5,498
  • airtai/faststreamAvatar von airtai

    airtai/faststream

    5,234Auf GitHub ansehen↗

    FastStream is an asynchronous Python framework designed for building event-driven microservices. It provides a unified abstraction layer for interacting with various message brokers, enabling developers to manage event production and consumption through a consistent interface while maintaining access to native provider-specific features. The framework centers on a decorator-based routing model that binds application logic directly to broker topics, supported by a built-in dependency injection container that resolves resources at runtime. The framework distinguishes itself through its deep int

    Provides asynchronous message publishing capabilities to trigger downstream services or update external systems.

    Python
    Auf GitHub ansehen↗5,234
  • gofiber/recipesAvatar von gofiber

    gofiber/recipes

    3,427Auf GitHub ansehen↗

    This project is a comprehensive library of reference implementations and patterns for building web applications using the Go Fiber framework. It provides curated templates and implementation guides for creating REST APIs, web servers, and structured backend services. The repository serves as a practical resource for applying architectural patterns, including Clean and Hexagonal architectures, as well as port-and-adapter decoupling. It offers detailed examples for integrating common web features such as OAuth2 authentication, JWT verification, WebSockets for real-time communication, and server

    The project's ability to send data from an HTTP endpoint to a message broker for asynchronous background processing.

    Gocookbookexamplesfiber
    Auf GitHub ansehen↗3,427
  • microsoftlearning/az-204-developingsolutionsformicrosoftazureAvatar von MicrosoftLearning

    MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure

    2,513Auf GitHub ansehen↗

    This project is a set of hands-on labs for practicing cloud development, focusing on implementing web apps, functions, storage solutions, and containerized workloads. It provides a practical framework for developing solutions within the Azure ecosystem. The content covers a wide range of specialized cloud capabilities, including serverless development with HTTP and timer triggers, container orchestration using apps and instances, and API management for routing and transforming traffic. It also emphasizes identity and access management through OpenID Connect and managed identities. Additional

    Demonstrates publishing messages to cloud queues for asynchronous background processing.

    C#
    Auf GitHub ansehen↗2,513
  1. Home
  2. DevOps & Infrastructure
  3. Queue Management
  4. Message Queues
  5. Asynchronous Message Publishing

Unter-Tags erkunden

  • Queue-less Asynchronous DispatchTriggering remote service calls asynchronously without the need for a dedicated message broker infrastructure. **Distinct from Asynchronous Message Publishing:** Specifically refers to dispatching calls without a message queue, whereas the parent usually implies publishing to a broker.