[celery] Queue-based task prioritization (672c81bf)
This commit is contained in:
8
justfile
8
justfile
@ -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
|
||||
|
||||
Reference in New Issue
Block a user