django包括redis到heroku上

eivgtgni  于 2021-06-09  发布在  Redis
关注(0)|答案(0)|浏览(267)

我花了过去几天的时间试图为我的网站设置这个,但一直未能理解这个特定的错误。
我在我的项目中使用了django cookiecutter锅炉捣固机。
我用redis在本地添加celery 来执行任务,这很管用
伟大的。
我已将我的项目部署到heroku。
我现在正在尝试在我的生产环境中实现相同的任务,但是我现在使用一个名为redis的heroku插件来代替redis。我照着他的话做了;
在我的设置中:我从redis to go教程中复制了这个。除了更改urlparse import以满足python3标准之外,没有进行任何调整。

production.py
import os

from urllib.parse

import urlparse

redis_url = urlparse(os.environ.get('REDISTOGO_URL', 'redis://localhost:6959'))

CACHES = { 'default': {

'BACKEND': 'redis_cache.RedisCache',

'LOCATION': '%s:%s' % (redis_url.hostname, redis_url.port),

'OPTIONS': {

'DB': 0,

'PASSWORD': redis_url.password, }

}

}

程序文件
我已经在procfile中添加了下面一行,并为我的worker添加了第二个dyno。

worker: celery -A appname worker --beat

工人似乎在工作。状态改变,然后关闭。它显然无法连接,请参阅错误。
heroku日志

2020-05-16T02:07:58.647226+00:00 app[worker.1]: [2020-05-16 04:07:58,647: ERROR/MainProcess] consumer: Cannot connect to amqp://guest:**@127.0.0.1:5672//: [Errno 111] Connection refused.

我做错什么了?
我的celery 配置:
celery .py

from __future__ import absolute_import, unicode_literals
import os
from celery import Celery

# set the default Django settings module for the 'celery' program.

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings.local')

app = Celery('rebanq_pro')

# Using a string here means the worker don't have to serialize

# the configuration object to child processes.

# - namespace='CELERY' means all celery-related configuration keys

# should have a `CELERY_` prefix.

app.config_from_object('django.conf:settings', namespace='CELERY')

# Load task modules from all registered Django app configs.

app.autodiscover_tasks()

@app.task(bind=True)
def debug_task(self):
    print('Request: {0!r}'.format(self.request))

设置.local.py

CELERY_BROKER_URL = 'redis://localhost:6379'
CELERY_RESULT_BACKEND = 'redis://localhost:6379'
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
CELERY_TIMEZONE = TIME_ZONE

设置.production.py

CELERY_BROKER_URL = os.environ.get("REDISTOGO_URL")
CELERY_RESULT_BACKEND = os.environ.get("REDISTOGO_URL")
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
CELERY_TIMEZONE = TIME_ZONE

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题