Files
mcma-backend/app/workers/arq_worker.py
T
2026-06-06 12:30:49 +03:00

37 lines
1.0 KiB
Python

"""arq worker settings — the queue runtime. Task functions register here.
Run with: ``arq app.workers.arq_worker.WorkerSettings``.
Tasks (download, enrich, transcode) are appended to ``functions`` in later steps.
"""
from typing import Any, ClassVar
from arq.connections import RedisSettings
from app.core.config import get_settings
from app.core.logging import configure_logging, get_logger
log = get_logger("worker")
async def startup(_ctx: dict[str, Any]) -> None:
settings = get_settings()
configure_logging(level=settings.log_level, json=settings.log_json)
log.info("worker_startup", environment=settings.environment)
async def shutdown(_ctx: dict[str, Any]) -> None:
log.info("worker_shutdown")
async def _noop(_ctx: dict[str, Any]) -> None:
pass
class WorkerSettings:
functions: ClassVar[list[Any]] = [_noop] # populated as tasks are implemented
on_startup = startup
on_shutdown = shutdown
max_jobs = get_settings().max_parallel_downloads
redis_settings = RedisSettings.from_dsn(str(get_settings().redis_url))