python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Setting RabbitMQ additional configs via celery
I have been reading about Delivery Acknowledgement Timeout in RabbitMQ and how this is controlled by an additional configuration in rabbitmq via the consumer_timeout variable. When using Redis as brok...
jpsca1293
Votes: 0
Answers: 0
Run Django API that has 1 hour to execution time
I have an API that takes one hour to complete...I am trying to implement celery and run 2 times a day..So what is the best way to run an API asynchronously?
sreekanth
Votes: 0
Answers: 1
How can I run only a specific function in celery, not the whole files tasks.py?
I have 2 files. The first one is called tasks.py and looks like this
from celery import Celery
import time
app = Celery('tasks', broker='amqp://localhost')
def init():
for i in range(30):
...

Роман Зарьянов
Votes: 0
Answers: 0
Why is acks_late being ignored in my Celery task?
I'm attempting to create a long-running (minutes) Celery task that'll be durable enough to withstand power loss, application crashes, etc. I have read the docs and know why this might be a bad idea bu...

pdoherty926
Votes: 0
Answers: 0