awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • sorentwo/obanAvatar de sorentwo

    sorentwo/oban

    3,930Ver en 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
    Ver en GitHub↗3,930
  • leahneukirchen/nqAvatar de leahneukirchen

    leahneukirchen/nq

    3,121Ver en 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
    Ver en GitHub↗3,121
  1. Home
  2. Software Engineering & Architecture
  3. Directory-Based Organization
  4. Task Queue Isolation

Explorar subetiquetas

  • 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.