-
```
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Asia/Kolkata'
USE_I18N = True
USE_L10N = True
USE_TZ = True
CELERY_BROKER_URL = 'redis://localhost:6379'
CELERY_RESULT_BACKEND = CELERY_BROKER_URL
C…
-
### Discussed in https://github.com/celery/celery/discussions/8409
Originally posted by **akri16** August 1, 2023
We have celery workers running inside docker containers and we whenever we ne…
-
TLDR: it's missing the subcommands.
`celery --help`:
```
Usage: celery [OPTIONS] COMMAND [ARGS]...
Celery command entrypoint.
Options:
-A, --app APPLICATION
-b, --broker TEXT
-…
-
Hi,
I am using
celery==5.1.2
redis==3.5.3
django-celery-beat==2.2.1
I have schedule a task to run at every 60 seconds. The task role is just to generate a pub sub message.
The code is deployed in …
-
I'm using celery for simple system executing tasks in order. I.e. [[1], [2,3], [4]] - in such case I want task 1 to be executed first, after it finishes I want to execute 2 and 3 parallel and then whe…
-
To support scalable deployments of the Aspects infrastructure, we would like to add the EduNEXT production helm charts to the Harmony project. Specifically these would support:
- Adding a version o…
-
I have some scheduler tasks, so I need celery beat to manage them. Like below:
Only run `celery -A myproject.celeryconf beat` in one worker, but run `celery worker -A myproject.celeryconf -Q default…
-
There's a script in an on-premise server that's terminating queries over 10 minutes. We should bring this task into source control as Celery task and management command.
**Action items:**
- [ ] Do…
-
### How do you use Sentry?
Sentry Saas (sentry.io)
### Version
1.39.2
### Steps to Reproduce
We've noticed validation errors from our Crons consumer outputting `monitors.consumer.monito…
gaprl updated
3 weeks ago
-
**Description**
Hello,
I recently took care of CeleryExecutor. I managed to optimize the status retrieval by using bulk operations. Instead of fetching the status for each task using a separate qu…