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

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

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

2 مستودعات

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

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • sorentwo/obanالصورة الرمزية لـ sorentwo

    sorentwo/oban

    3,930عرض على 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
    عرض على GitHub↗3,930
  • leahneukirchen/nqالصورة الرمزية لـ leahneukirchen

    leahneukirchen/nq

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

استكشف الوسوم الفرعية

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