jobtastic- Celery tasks plus more awesome Jobtastic makes your user-responsive long-runningCelery jobs totally awesomer. Celery is the ubiquitous python job queueing tool and jobtastic is a python ...
分类:
其他好文 时间:
2015-05-28 16:30:06
阅读次数:
524
Flower: Real-time Celery web-monitor Flower is a real-time web based monitor and administration tool for Celery. It is under active development, but is already an essential tool. Being the recommen...
分类:
Web程序 时间:
2015-05-28 12:44:25
阅读次数:
275
1、Configuration Celery,作为一个consumer工具不需要太多的操作。它有输入和输出通道,通过输入通道连接到broker(如AMQP服务Channel)或者通过输出通道连接到结果的backend(用于获取结果,不是必须的,因为有...
分类:
编程语言 时间:
2015-05-28 09:45:11
阅读次数:
841
1. 首先进入虚拟环境: ***:~/piaoshifu_object/epiao.piaoshifu.cn$ source /home/wyl/piaoshifu_virtualenv/epiaoenv/bin/activate(epiaoenv)***:~/piaoshifu_object/e....
分类:
其他好文 时间:
2015-05-26 17:51:32
阅读次数:
3041
玩了一个星期的clannad,是时候干点事了。 折腾了下celery周期性任务: celery提供了一个叫celery beat的服务,用于定时驱使worker执行任务。也就是说,如果本地没有活动的worker,它将不会得到任何执行结果,他只...
分类:
其他好文 时间:
2015-05-24 15:53:52
阅读次数:
399
基于Python已经有多个科学研究和数据分析库,使用非常方便。结合OpenStack(http://www.openstack.org)、RabbitMQ(http://www.rabbitmq.com)、Celery(http://www.celeryproject.org)可以打造一个实时...
分类:
编程语言 时间:
2015-05-21 15:41:56
阅读次数:
287
Celery?(芹菜)是基于Python开发的分布式任务队列。它支持使用任务队列的方式在分布的机器/进程/线程上执行任务调度。 架构设计 Celery的架构由三部分组成,消息中间件(message broker),任务执行单元(wor...
分类:
编程语言 时间:
2015-05-20 18:53:15
阅读次数:
158
celery worker guide abstract 启动worker: e.g. celery -A proj worker -l info ? ? ?celery -A proj worker --loglevel=INFO --concurrency=10 -n worker1.%h 备注: The hostname argument can expand the...
分类:
其他好文 时间:
2015-05-18 09:22:21
阅读次数:
344
起因最近打算实现异步任务,回想起当年看celery的场景,重新整理下celery的机制1. 任务入队列假定一个函数定义如下def add(a, b, c=0):
print a + b + c任务被序列化后,以字符串的形式入队列{"body": "gAJ9cQEoVQdleHBpcmVzcQJOVQN1dGNxA4lVBGFyZ3NxBF1xBShLD0sUZVUFY2hvcmRxBk5V...
分类:
其他好文 时间:
2015-05-14 14:19:07
阅读次数:
130