43. Python celery简介

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了43. Python celery简介相关的知识,希望对你有一定的参考价值。

Celery异步分布式

什么是celery?

他是一个python开发的异步分布式任务调度模块

celery本身不提供消息服务,使用第三方服务,也就是broker来传递任务,目前支持rabbitmq,redis,数据库等等。

我们使用redis

连接URL的格式为:

    redis://:[email protected]:port/db_number

例如:

    BROKER_URL='redis://localhost:6379/0'


过程如图示

技术分享图片

在python里面如果用到异步分布式,首先想到celery

安装celery

pip install celery
pip install redis      #之前讲过

在服务器上安装redis服务器,并启动redis

第一个简单的例子:

[[email protected] celery]# cat lili.py
#/usr/bin/env python
#-*- coding:utf-8 -*-
from celery import Celery
broker="redis://192.168.48.131:6379/5"
backend="redis://192.168.48.131:6379/6"
app = Celery("lili", broker=broker, backend=backend)

@app.task
def add(x, y):
    return x+y

启动:

# celery -A lili worker -l info

调用:

# cat demo2.py
#!/usr/bin/python
#-*- coding:utf-8 -*-
from  lili  import  add
import time
a = add.delay(10, 20)
print (a)			##返回异步分布式的对象
print (type(a))
time.sleep(1)
print (a.result)  		##返回调用的值
print (a.status) 		##返回状态
print (a.get(timeout=3))        ##获得值
print (a.ready())		#是否处理,返回 True 为处理完成


以上是关于43. Python celery简介的主要内容,如果未能解决你的问题,请参考以下文章

Python之celery的简介与使用

python任务调度模块celery

Python爬虫之使用celery加速爬虫

celery简介

9-2celery简介

python测试开发django-197.django-celery-beat 定时任务