用celery执行task出现do_handshake_on_connect异常
我编写了一个爬虫放在了segmentfaultSpider.py
文件里面。
执行这个文件python segementfaultSpider.py
,可以正常运行。
然后自己用celery写了一个消息队列,将爬虫任务放进去,出现了以下错误:
是在requests.get(url)
发起这个请求的时候报出了如上图的异常
以下是我消息队列的代码:
from celery import Celeryfrom web.segmentfaultSpider import tasks
app = Celery('start', broker='sqla+sqlite:///celery_borker.sqlite',
backend='db+sqlite:///celery_backend.sqlite')
@app.task
def get_segementfault_blog():
tasks()
if __name__ == '__main__':
get_segementfault_blog.delay().get()
请问如何解决 谢谢:-)
回答:
broker好像不支持sqlite把
回答:
sqlite没看到支持啊
以上是 用celery执行task出现do_handshake_on_connect异常 的全部内容, 来源链接: utcz.com/a/162526.html