celery Questions
2
Solved
Im working with a django project(im pretty new to django) and running into an issue passing a model object between my view and a celery task.
I am taking input from a form which contains several Mo...
Lump asked 11/2, 2021 at 18:20
2
Solved
Project structure:
client
nginx
web/
celery_worker.py
project
config.py
api/
I have the following services in my docker-compose:
version: '3.6'
services:
web:
build:
context: ./service...
Clinandrium asked 29/3, 2019 at 3:33
5
Solved
I've a periodic celery task which needs to store representation of a object in a specific json field.
Here is the simplified model structure.
Parent <-- ChildWrapper <-- Child Image
So basica...
Seraglio asked 19/8, 2019 at 9:50
2
Solved
Consider this code:
from pydantic import BaseModel
class MyModel(BaseModel):
x: int
appc = Celery(...)
@appc.task(bind=True)
def mytask(self):
return [MyModel(x=0)]
res = mytask.delay().get()...
1
I was reading the documentation of django-channels for the first time today and found the following line Channels will take care of scheduling them and running them all in parallel. Does this mean,...
Allegra asked 25/5, 2018 at 1:37
3
How to test the tasks of a Celery instance using pytest? I am not talking about testing the Celery tasks created using the @shared_task decorator with pytest. For that, there is already a good solu...
Seiden asked 24/1, 2023 at 4:43
2
python 3.10 running in venv on Windows 10 pro.
I am trying to follow the tutorial for the Celery and Flask integration: https://flask.palletsprojects.com/en/latest/patterns/celery/
# example.py
fr...
Deictic asked 7/3, 2023 at 8:55
3
I have quite a problem with celery on my distribted system. I have couple of machines among different localizations and I've got a lot of warnings in my log files like:
"Substantial drift from cel...
4
Solved
This is probably a stupid question but its got me stumped coming from a Ruby background.
I have an object that looks like this when I try to print it.
print celery.AsyncResult.task_id
>>>...
5
Solved
I am trying to get started with celery, but I can't get my task up and running. I have installed django-celery-beat and celery4.
My settings file.
Installed apps (with celery packages)
...
'djan...
Steinberg asked 24/10, 2017 at 14:37
3
I've been trying to figure out this for a while but a lot of answers I can find now are out-dated (posts from > 6 years ago), or less related.
The question is really how to deal with database se...
Retiring asked 22/9, 2020 at 18:53
6
Solved
I'm learning Django. recently I tried to use celery. the problem that I'm facing with it is tasks are receiving but they don't execute.
settings.py:
# Celery application definition
CELERY_BROKER_UR...
4
Solved
I have a task, somewhat like this:
@task()
def async_work(info):
...
At any moment, I may call async_work with some info. For some reason, I need to make sure that only one async_work is running ...
2
Solved
What is the point of Celery chain if the whole chain breaks if one of the tasks fail?!!
I have this Celery chain:
res = chain(workme.s ( y=1111 ), workme2.s( 2222 ), workme3.s( 3333 ),)()
And ...
Tergiversate asked 25/6, 2013 at 7:13
2
Solved
Although celery reports no problems at start and says it successfully connected to redis (see log), I get this error running celery inspect ping
Traceback (most recent call last):
File "/usr/...
Josselyn asked 18/8, 2022 at 9:37
3
Solved
I just switched from ForkPool to gevent with concurrency (5) as the pool method for Celery workers running in Kubernetes pods. After the switch I've been getting a non recoverable erro in the worke...
Proclus asked 3/11, 2021 at 16:36
12
Solved
How can I create a wrapper that makes celery tasks look like asyncio.Task? Or is there a better way to integrate Celery with asyncio?
@asksol, the creator of Celery, said this::
It's quite comm...
Bowerman asked 2/10, 2016 at 9:51
5
I am using VSCode for web-developing with framework Django. There is no questions for debugging Django, but when i try to use Celery - debugger dosn't stop at breakpoints. I use this configuration ...
Dx asked 29/11, 2018 at 9:45
3
I have an app that was written with Flask+SQLALchemy+Celery, RabbitMQ as a broker, database is PostgreSQL (PostgreSQL 10.11 (Ubuntu 10.11-1.pgdg16.04+1) on x86_64-pc-linux-gnu, compiled by gcc (Ubu...
Mcfall asked 10/1, 2021 at 19:49
1
I have an API build with FastAPI which endpoint submits a task to a celery worker, waits for worker to finish its job and return a result to the user.
Question is what is the correct way to wait th...
Inscription asked 14/2, 2021 at 13:56
4
Solved
I use Celery with RabbitMQ in my Django app (on Elastic Beanstalk) to manage background tasks and I daemonized it using Supervisor.
The problem now, is that one of the period task that I defined is...
Glandule asked 2/4, 2014 at 8:3
2
I use celery 4.4.0 version in my project(Ubuntu 18.04.2 LTS). When i raise Exception('too few functions in features to classify') , celery project lost worker and i get such logs:
[2020-02-11 15:4...
Impersonate asked 13/2, 2020 at 10:17
10
Solved
While issuing a new build to update code in workers how do I restart celery workers gracefully?
Edit:
What I intend to do is to something like this.
Worker is running, probably uploading a 100 ...
2
My application is written in django f/w which uses celery and redis for asynchronous tasks. I would like to autoscale workers according load/no.of messages in queue. For this, I would like to make ...
Proverbs asked 27/3, 2020 at 19:57
2
Solved
We upgrade Celery and started to get a warning:
CPendingDeprecationWarning: The broker_connection_retry configuration
setting will no longer determine whether broker connection retries are
made du...
Skycap asked 14/11, 2023 at 10:24
1 Next >
© 2022 - 2024 — McMap. All rights reserved.