[celery] Queue-based task prioritization (672c81bf)

This commit is contained in:
2026-08-08 12:11:08 -04:00
parent d5a753146f
commit f7087ebe4e
11 changed files with 192 additions and 13 deletions

View File

@ -10,7 +10,13 @@ shell:
poetry run python manage.py shell
celery:
poetry run celery -A vrobbler worker -l info --concurrency=2 --pool=threads
poetry run celery -A vrobbler worker -Q default,charts -l info --concurrency=2 --pool=threads
celery-priority:
poetry run celery -A vrobbler worker -Q priority -l info --concurrency=2 --pool=threads
celery-background:
poetry run celery -A vrobbler worker -Q background -l info --concurrency=1 --pool=threads
celery-beat:
poetry run celery -A vrobbler beat -l info