awesome-repositories.com
Blog
MCP
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
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 dépôts

Awesome GitHub RepositoriesTask Queue Isolation

Using directory structures to separate different task queues and their associated logs.

Distinct from Directory-Based Organization: Distinct from general directory organization by specifically applying it to the isolation of independent task execution streams.

Explore 2 awesome GitHub repositories matching software engineering & architecture · Task Queue Isolation. Refine with filters or upvote what's useful.

Awesome Task Queue Isolation 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.
  • sorentwo/obanAvatar de sorentwo

    sorentwo/oban

    3,930Voir sur GitHub↗

    Oban is a relational database-backed job processor and task scheduler for Elixir applications. It functions as a distributed workflow orchestrator that leverages database primitives to ensure job persistence, reliability, and consistent state management across clusters. The system distinguishes itself through complex workflow orchestration, enabling the composition of task dependencies using batching, sequential processing, and fan-out or fan-in patterns. It provides global throughput limiting and uniqueness enforcement to prevent duplicate work and protect downstream resources across distrib

    Provides named queues with independent concurrency limits to isolate failures and protect downstream resources from overload.

    Elixir
    Voir sur GitHub↗3,930
  • leahneukirchen/nqAvatar de leahneukirchen

    leahneukirchen/nq

    3,121Voir sur GitHub↗

    nq is a daemonless job orchestrator and POSIX shell task manager that manages asynchronous command execution on Unix systems. It functions as a command line job queue using directories and file-system locks to coordinate background processes across multiple terminal sessions. The system distinguishes itself by utilizing file-system-based locking to ensure sequential job execution without requiring a resident background daemon. It enables shared queue coordination, allowing different terminal sessions to synchronize work by directing tasks to specific directories. The project covers backgroun

    Provides isolation for different work streams by organizing tasks and logs into separate folder structures.

    C
    Voir sur GitHub↗3,121
  1. Home
  2. Software Engineering & Architecture
  3. Directory-Based Organization
  4. Task Queue Isolation

Explorer les sous-tags

  • Concurrency-Limited QueuesQueues that enforce independent concurrency limits to isolate workloads and prevent resource contention. **Distinct from Task Queue Isolation:** Distinct from Task Queue Isolation by focusing on runtime concurrency throttling rather than just organizational separation.