Skip to main content

async-task-kit

A powerful async task processing kit based on RabbitMQ with asyncio consumers.

Installation

pip install async-task-kit

Features

  • RabbitMQ Client: Robust connection pooling and delay/dead-letter queue support.
  • CoroutineConsumer: asyncio 多 worker 消费,ConsumeSession 保证长任务 ack 可靠。
  • Extensible Processor: Easily define your task logic by inheriting TaskProcessor.
  • Built-in Logger & EnvLoader: Useful utilities for production-ready applications.

Quick Start

1. Configuration (.env)

Use the built-in EnvLoader to manage your environment variables. Create a .env file:

RABBITMQ_URL=amqp://guest:guest@localhost/
TASK_IDS=demo_task

# You can also configure specific task settings using the {TASK_ID}_ prefix
DEMO_TASK_QUEUE_NAME=my_demo_queue
DEMO_TASK_CONCURRENCY=3

2. Define your Task Processor (demo_processor.py)

import logging
import asyncio
from async_task_kit import TaskProcessor

logger = logging.getLogger(__name__)

class DemoProcessor(TaskProcessor):
    async def process(self, task: dict):
        logger.info(f"Processing task: {task}")
        # 阻塞 I/O 或 CPU 密集:放到线程池,避免卡住 event loop
        # result = await asyncio.to_thread(self._sync_work, task)
        # Return any truthy value (e.g., dict, object, True) for success and pass to callback.
        # Return None or False to trigger retry.
        return {"status": "ok", "processed_data": task}

    # def _sync_work(self, task: dict):
    #     ...

    async def callback(self, task: dict, result: any):
        logger.info(f"Task completed with result: {result}")

3. Main Consumer Application (main.py)

A production-ready setup with signal handling for graceful shutdown.

import asyncio
import logging
import signal
from typing import List, Type

from demo_processor import DemoProcessor

from async_task_kit import CoroutineConsumer as Consumer
from async_task_kit import TaskProcessor, EnvLoader, setup_logger

# Initialize logger
setup_logger()
logger = logging.getLogger(__name__)

# Register your processors
TASK_REGISTRY: dict[str, Type[TaskProcessor]] = {
    "demo_task": DemoProcessor,
}

consumers: List[Consumer] = []

async def run_all_consumers(amqp_url: str, task_ids: List[str]):
    tasks = []
    for task_id in task_ids:
        if task_id not in TASK_REGISTRY:
            continue

        processor_cls = TASK_REGISTRY[task_id]
        processor = processor_cls(task_id=task_id)

        consumer = Consumer(
            amqp_url=amqp_url,
            queue_name=processor.queue_name,
            processor=processor,
            concurrency=processor.concurrency,
        )
        consumers.append(consumer)
        tasks.append(consumer.start())

        logger.info(f"🚀 启动任务 [{task_id}] | queue={processor.queue_name} | 并发={processor.concurrency}")

    await asyncio.gather(*tasks)

async def shutdown_all():
    logger.info("🛑 优雅关闭所有消费者...")
    for consumer in consumers:
        await consumer.stop()
    logger.info("✅ 所有消费者已关闭")

def handle_exit_signal(*args, **kwargs):
    asyncio.create_task(shutdown_all())

async def main():
    env = EnvLoader()
    amqp_url = env.get("RABBITMQ_URL")
    task_ids_str = env.get("TASK_IDS", "").strip()

    if not task_ids_str:
        logger.warning("⚠️ 未配置 TASK_IDS")
        return

    task_ids = [t.strip() for t in task_ids_str.split(",") if t.strip()]
    valid_tasks = [t for t in task_ids if t in TASK_REGISTRY]

    loop = asyncio.get_running_loop()
    for sig in (signal.SIGINT, signal.SIGTERM):
        loop.add_signal_handler(sig, handle_exit_signal)

    await run_all_consumers(amqp_url, valid_tasks)

if __name__ == "__main__":
    try:
        asyncio.run(main())
    except KeyboardInterrupt:
        logger.info("👋 服务已安全退出")

4. Publishing Tasks (publisher.py)

import asyncio
import logging
from async_task_kit import RabbitMQ, setup_logger

setup_logger()
logger = logging.getLogger(__name__)

async def publish():
    rmq = RabbitMQ("amqp://guest:guest@localhost/")
    await rmq.init()
    
    await rmq.push("my_demo_queue", {"message": "Hello from async-task-kit!"})
    logger.info("Task published successfully.")
    
    await rmq.close()

if __name__ == "__main__":
    asyncio.run(publish())

5. RabbitMQ Client API

RabbitMQ 提供连接池、push / pop、延迟重试队列,以及 queue_length 查询队列深度。

queue_length

from async_task_kit import RabbitMQ

rmq = RabbitMQ("amqp://guest:guest@localhost/")
await rmq.init()

length = await rmq.queue_length("my_demo_queue")
if length == RabbitMQ.QUEUE_LENGTH_UNAVAILABLE:
    # -1:连不上或队列不存在,稍后重试
    ...
elif length == 0:
    # 队列存在且为空
    ...
else:
    # 当前消息数
    ...

await rmq.close()
返回值 含义
>= 0 队列真实消息数(0 = 空队列)
-1 (QUEUE_LENGTH_UNAVAILABLE) 连接失败、队列不存在或其它异常,应重试

实现要点:

  • 使用 passive=True 声明:只查询已存在的队列,不会自动创建空队列。
  • 断连时会关闭旧连接池并自动重建(与 push / pop 一致)。

pop 与队列声明

pop 取消息前会 declare_queue(durable=True)(默认),参数须与 push 创建队列时一致。

queue_length 使用 passive 模式,无需传 durable

Consumer 空队列轮询

Consumer 通过 ConsumeSessionrmq.open_consume_session())消费:每条 worker 一条长连接 channel,pop → process → ack 在同一 channel 上完成,避免 channel 池导致长任务 ack 失败。

push / queue_length 仍走连接池。

空队列时 pop 立即返回,轮询间隔由 poll_interval 控制(默认 1.0 秒):

consumer = CoroutineConsumer(
    ...,
    poll_interval=2.0,  # 空队列时每 2 秒 pop 一次
)

6. 并发与部署

本库只提供 CoroutineConsumer(0.1.18 起移除 ThreadConsumer / ProcessConsumer)。

阻塞或 CPU 密集任务

process() 里用 asyncio.to_thread,把同步阻塞逻辑丢进默认线程池,不阻塞消费 event loop:

async def process(self, task: dict):
    return await asyncio.to_thread(self._heavy_sync, task)

配合 concurrency(环境变量 {TASK_ID}_CONCURRENCY)控制同一进程内并行 worker 数。

多任务类型 / 多进程隔离

不要在一个进程里混跑互不相关的重任务。推荐:

方式 做法
单进程多队列 TASK_IDS=demo_task,other_task,每个 task 一个 CoroutineConsumer(README 示例)
多进程 / 多容器 每个 TASK_ID 单独起一个 deployment,环境变量只配一个 task
水平扩展 K8s replicas 复制同一 consumer,RabbitMQ 自动分摊消息

进程级隔离交给编排层(systemd、Docker、K8s),库内不再维护 ProcessConsumer

从 ThreadConsumer / ProcessConsumer 迁移

# 旧
# from async_task_kit import ThreadConsumer as Consumer

# 新:一律 CoroutineConsumer + asyncio.to_thread(阻塞部分)
from async_task_kit import CoroutineConsumer as Consumer

Changelog

各版本变更说明见 CHANGELOG.md

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

async_task_kit-0.1.22.tar.gz (18.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

async_task_kit-0.1.22-py3-none-any.whl (15.2 kB view details)

Uploaded Python 3

File details

Details for the file async_task_kit-0.1.22.tar.gz.

File metadata

  • Download URL: async_task_kit-0.1.22.tar.gz
  • Upload date:
  • Size: 18.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for async_task_kit-0.1.22.tar.gz
Algorithm Hash digest
SHA256 3891db5f038a3d58716f185f8f89f850e0e786be1aa7c6af95a3d30eefcfecd6
MD5 ccf72e445da7f5b784056856848d2563
BLAKE2b-256 28649d44dd76d7e663a059543d1c8d27eebecbe2baff063db824dfc86e57832e

See more details on using hashes here.

File details

Details for the file async_task_kit-0.1.22-py3-none-any.whl.

File metadata

  • Download URL: async_task_kit-0.1.22-py3-none-any.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for async_task_kit-0.1.22-py3-none-any.whl
Algorithm Hash digest
SHA256 82d7d1500d986992fc14b746654b2340a0f6bbbe7b57c9cd8a2e6841e21b540b
MD5 5ee8a7ef2df7f9b84f519795140361d5
BLAKE2b-256 bff52ce82620f222b71a5bd10abc315720bd0e66a4e3474735f8eee51ba30dc3

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.25

2 files

0.1.24

2 files

0.1.23

2 files

This release

0.1.22 This release

2 files

0.1.21

2 files

0.1.20

2 files

0.1.19

2 files

0.1.18

2 files

0.1.17

2 files

0.1.16

2 files

0.1.15

2 files

0.1.14

2 files

0.1.13

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page