Skip to content Skip to sidebar Skip to footer
Showing posts with the label Celery

Django-celery Infrastructure Over Multiple Servers, Broker Is Redis

Currently we have everything setup on single cloud server, that includes: Database server Apache C… Read more Django-celery Infrastructure Over Multiple Servers, Broker Is Redis

Unit Testing An Asyncresult In Celery

I am trying to test some celery functionality in Django's unit testing framework, but whenever … Read more Unit Testing An Asyncresult In Celery

Running Celery As Daemon With Supervisor And Django On Elastic Beanstalk

I am attempting to get Celery to run on an EB environment with Django and I have gotten super close… Read more Running Celery As Daemon With Supervisor And Django On Elastic Beanstalk

How To Pause Or Resume Celery Task?

I am having a requirement in my project where customer can pause or resume process which are pendin… Read more How To Pause Or Resume Celery Task?

How To Provide User Constant Notification About Celery's Task Execution Status?

I integrated my project with celery in this way, inside views.py after receving request from the us… Read more How To Provide User Constant Notification About Celery's Task Execution Status?

Pause Celery Task

I'm trying to pause a celery task temporary based on user button click. What I've done is: … Read more Pause Celery Task

Django Start Celery Daemon In Production With Supervisor

I have created a conf file for supervisor inside /etc/supervisor/conf.d/myproject-celery.conf My co… Read more Django Start Celery Daemon In Production With Supervisor

Scrapy And Celery `update_state`

I have the following setup (Docker): Celery linked to Flask setup which runs the Scrapy spider Fla… Read more Scrapy And Celery `update_state`

Amqp Connection Reset By Peer, But Celery Connected

I have a flask app using Celery with RabbitMQ as the broker. I've followed the instructions in … Read more Amqp Connection Reset By Peer, But Celery Connected

How Can Celery Distribute Users' Tasks In A Fair Way?

The task I'm implementing is related to scrape some basic info about a URL, such as title, desc… Read more How Can Celery Distribute Users' Tasks In A Fair Way?

How To Run Airflow With Celeryexecutor On A Custom Docker Image

I am adding airflow to a web application that manually adds a directory containing business logic t… Read more How To Run Airflow With Celeryexecutor On A Custom Docker Image

How To Configure Celerybeat_schedule In Django Settings?

I can get this to run as a standalone application, but I am having trouble getting it to work in Dj… Read more How To Configure Celerybeat_schedule In Django Settings?

Is It Possible To Use Django Models Module Only In My Project?

I am developing a small independent python application which uses Celery. I have built this using d… Read more Is It Possible To Use Django Models Module Only In My Project?

Celery Prefetch Multiplier Setting No Effect

I have a series of servers running multiple workers. These are long-running tasks, requiring anywh… Read more Celery Prefetch Multiplier Setting No Effect

How To Test If Email Was Sent After Executing Celery Task

I'm using Django 1.10 and Celery 4.1 I have a shared_task which sends an email to the user. # m… Read more How To Test If Email Was Sent After Executing Celery Task

Celery Beat With Method Tasks Not Working

I'm trying to run celerybeat on a method task, and can't get anything to work out properly.… Read more Celery Beat With Method Tasks Not Working

Initializing Different Celery Workers With Different Values

I am using celery to run long running tasks on Hadoop. Each task executes a Pig script on Hadoop wh… Read more Initializing Different Celery Workers With Different Values

Get Progress From Async Python Celery Chain By Chain Id

I'm trying to get the progress of a task chain by querying each task status. But when retrievin… Read more Get Progress From Async Python Celery Chain By Chain Id

Celery Dies With Dbpagenotfounderror

I have 3 machines with celery workers and rabbitmq as a broker, one worker is running with beat fla… Read more Celery Dies With Dbpagenotfounderror

Invoke Celery Task From Tornado

How can someone invoke a celery task from tornado, and get the result via a callback? This post c… Read more Invoke Celery Task From Tornado