¡@

Home 

python Programming Glossary: celery

How can I schedule a Task to execute at a specific time using celery?

http://stackoverflow.com/questions/1990531/how-can-i-schedule-a-task-to-execute-at-a-specific-time-using-celery

can I schedule a Task to execute at a specific time using celery I've looked into PeriodicTask but the examples only cover making.. task every Monday at 1 a.m. python django scheduled tasks celery share improve this question The recently released version.. supports this now thanks to Patrick Altman Example from celery.task.schedules import crontab from celery.decorators import..

Running “unique” tasks with celery

http://stackoverflow.com/questions/4095940/running-unique-tasks-with-celery

&ldquo unique&rdquo tasks with celery I use celery to update RSS feeds in my news aggregation site... &ldquo unique&rdquo tasks with celery I use celery to update RSS feeds in my news aggregation site. I use one @task.. this import socket from datetime import timedelta from celery.decorators import task periodic_task from aggregator.models..

Why does Celery work in Python shell, but not in my Django views? (import problem)

http://stackoverflow.com/questions/4643065/why-does-celery-work-in-python-shell-but-not-in-my-django-views-import-proble

. Inside this directory I have a file called tasks.py from celery.decorators import task from celery.task import Task class Submitter.. called tasks.py from celery.decorators import task from celery.task import Task class Submitter Task def run self post kwargs.. it works Inside this directory I also have a file called celeryconfig.py BROKER_HOST localhost BROKER_PORT 5672 BROKER_USER..

Using the multiprocessing module for cluster computing

http://stackoverflow.com/questions/5181949/using-the-multiprocessing-module-for-cluster-computing

help with cluster computing. From the list pp jug pyro and celery look like sensible options although I can't personally vouch..

How can I release memory after creating matplotlib figures

http://stackoverflow.com/questions/7101404/how-can-i-release-memory-after-creating-matplotlib-figures

have several matlpotlib functions rolled into some django celery tasks. Every time the tasks are called more RAM is dedicated.. to be sure that not your function is leaking no matter of celery Make sure that django.settings.DEBUG is set False The connection..

Pros and cons of celery vs disco vs hadoop vs other distributed computing packages

http://stackoverflow.com/questions/8232194/pros-and-cons-of-celery-vs-disco-vs-hadoop-vs-other-distributed-computing-packag

and cons of celery vs disco vs hadoop vs other distributed computing packages .. s to use for distributed computing. I've looked into celery disco and mapreduce on hadoop and they all look pretty good... of the packages mentioned here. python django mapreduce celery disco share improve this question First of all I have no..

Cancel an already executing task with Celery?

http://stackoverflow.com/questions/8920643/cancel-an-already-executing-task-with-celery

a worker. Thanks for any light you can shed python django celery cancel message passing share improve this question revoke.. task can be executed after worker's restart. http docs.celeryproject.org en latest userguide workers.html#worker persistent.. executing task you need to set terminate to True . from celery.task.control import revoke revoke task_id terminate True http..

Separation of business logic and data access in django

http://stackoverflow.com/questions/12578908/separation-of-business-logic-and-data-access-in-django

processing can be offloaded to background tasks using Celery or similar frameworks. signals.py user_activated Signal providing_args..

Why does Celery work in Python shell, but not in my Django views? (import problem)

http://stackoverflow.com/questions/4643065/why-does-celery-work-in-python-shell-but-not-in-my-django-views-import-proble

does Celery work in Python shell but not in my Django views import problem.. but not in my Django views import problem I installed Celery latest stable version. I have a directory called home myuser.. home myuser fable home myuser fable jobs So I run my Celery worker using the console celeryd loglevel INFO and I try it..

Need help understanding Comet in Python (with Django)

http://stackoverflow.com/questions/5614274/need-help-understanding-comet-in-python-with-django

How much else do I need with them Where do things like Celery RabbitMQ or KV stores like Redis come into this I don't really..

Django - Set Up A Scheduled Job?

http://stackoverflow.com/questions/573618/django-set-up-a-scheduled-job

However there are nice advantages to using something like Celery mentioned in the other answers. In particular with Celery it.. Celery mentioned in the other answers. In particular with Celery it is nice to not have to spread your application logic out..

Celery and Python's logging inside tasks

http://stackoverflow.com/questions/6192265/celery-and-pythons-logging-inside-tasks

and Python's logging inside tasks I'm wondering how to setup.. improve this question Note This answer is outdated as of Celery 3.0 where you now use get_task_logger to get your per task logger.. up. Please see the Logging section of the What's new in Celery 3.0 document for details. Celery has dedicated support for logging..

Pros and cons of celery vs disco vs hadoop vs other distributed computing packages

http://stackoverflow.com/questions/8232194/pros-and-cons-of-celery-vs-disco-vs-hadoop-vs-other-distributed-computing-packag

one by one are easiest to work with in python django Celery is the winner. It has straightforward integration with django.. on all of them then mapReduce is an optimal solution. Celery is a distributed task queue which is more open and agile in.. and best documentation Here hadoop is probably the winner. Celery has a decent community and lots of stackoverflow questions ...

Cancel an already executing task with Celery?

http://stackoverflow.com/questions/8920643/cancel-an-already-executing-task-with-celery

an already executing task with Celery I am new to Django and Celery. I have been reading the doc.. already executing task with Celery I am new to Django and Celery. I have been reading the doc and searching but cannot seem to.. it needs to be cancelled I found this from the doc at Celery FAQ result add.apply_async args 2 2 countdown 120 result.revoke..