🔧(summary) specify dedicated transcription queue for Celery worker

Name the Celery queue used by transcription worker to prepare for
dedicated summarization queue separation, enabling faster transcript
delivery while isolating new agentic logic in separate worker processes.
This commit is contained in:
lebaudantoine
2025-09-09 18:27:30 +02:00
committed by aleb_the_flash
parent bfdf5548a0
commit 9fd264ae0e
4 changed files with 11 additions and 5 deletions

View File

@@ -243,13 +243,13 @@ services:
depends_on:
- redis-summary
celery-summary:
container_name: celery-summary
celery-summary-transcribe:
container_name: celery-summary-transcribe
build:
context: ./src/summary
dockerfile: Dockerfile
target: production
command: celery -A summary.core.celery_worker worker --pool=solo --loglevel=debug
command: celery -A summary.core.celery_worker worker --pool=solo --loglevel=debug -Q transcribe-queue
env_file:
- env.d/development/summary
volumes: