awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

Awesome GitHub RepositoriesQueue Wait Timeouts

Cancelling a task if it remains unscheduled in the queue beyond a configurable time limit.

Distinct from Task Queues: Distinct from Task Queues: focuses on time-based cancellation of queued tasks, not logical grouping or queue management.

Explore 3 awesome GitHub repositories matching devops & infrastructure · Queue Wait Timeouts. Refine with filters or upvote what's useful.

Awesome Queue Wait Timeouts GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • automattic/kueAutomattic 的头像

    Automattic/kue

    9,437在 GitHub 上查看↗

    Kue is a Redis-backed job queue library for Node.js that provides a complete system for defining, scheduling, and processing background work. It stores job metadata and state in Redis lists and sorted sets, enabling persistent, in-memory operations with configurable concurrency control and priority-sorted processing. The library includes a RESTful HTTP API for managing jobs and a web-based monitoring dashboard for inspecting job status, progress, and logs. The system distinguishes itself through its event-driven worker model, where workers listen for job events via Redis pub/sub and process j

    Shuts down the job queue gracefully by passing a timeout duration before the callback.

    JavaScriptjob-queuepriority-queueworker-queue
    在 GitHub 上查看↗9,437
  • hatchet-dev/hatchethatchet-dev 的头像

    hatchet-dev/hatchet

    6,622在 GitHub 上查看↗

    Hatchet is an open-source durable workflow engine and task orchestration platform. It provides a framework for building and executing fault-tolerant, multi-step pipelines as directed acyclic graphs (DAGs), with automatic retries, scheduling, and real-time observability. The system is built around durable task checkpointing, which persists execution state after each step so work can resume from the last checkpoint after a worker crash or restart, and it supports event-driven task resumption that pauses a task until a matching external event arrives. The platform distinguishes itself through it

    Cancels tasks that wait too long in the queue beyond a configurable time limit.

    Goconcurrencydagdistributed
    在 GitHub 上查看↗6,622
  • zio/ziozio 的头像

    zio/zio

    4,347在 GitHub 上查看↗

    ZIO is a functional effect system for the JVM that models asynchronous and concurrent programs as pure, composable values with typed error handling and dependency injection. Its core identity is built on fiber-based concurrency, where lightweight, non-blocking fibers execute millions of concurrent tasks with structured lifecycle management, and a dual-channel error model that separates expected business failures from unexpected system defects at compile time. The system provides effect-typed dependency injection through a layer-based dependency graph, pull-based reactive stream processing with

    ZIO interrupts all fibers waiting on a queue, empties it, and causes future operations to terminate immediately.

    Scalaasynchronicityasynchronousasynchronous-programming
    在 GitHub 上查看↗4,347
  1. Home
  2. DevOps & Infrastructure
  3. Task Queues
  4. Queue Wait Timeouts

探索子标签

  • Queue Shutdowns1 个子标签Operations that interrupt all waiting fibers, empty the queue, and cause future operations to terminate immediately. **Distinct from Queue Wait Timeouts:** Distinct from Queue Wait Timeouts: covers immediate forceful shutdown of a queue, not time-based cancellation of individual tasks.