芹菜、Django、Heroku——importterror:没有名为tasks的模块



我正在尝试在Heroku上的Django项目中使用IronMQ和缓存运行芹菜,但我收到以下内容:

2013-04-14T22:29:17.479887+00:00 app[celeryd.1]: ImportError: No module named tasks

我做错了什么?以下是我的相关代码,dj芹菜和我的应用程序都在已安装的应用程序:

要求(Rabbit AMQP在那里,因为我在IronMQ之前尝试过):

Django==1.5.1
amqp==1.0.11
anyjson==0.3.3
billiard==2.7.3.27
boto==2.8.0
celery==3.0.18
dj-database-url==0.2.1
django-celery==3.0.17
django-storages==1.1.8
gunicorn==0.17.2
iron-cache==0.2.0
iron-celery==0.3.1
iron-core==1.0.2
iron-mq==0.4
iso8601==0.1.4
kombu==2.5.10
psycopg2==2.4.6
python-dateutil==2.1
pytz==2013b
requests==1.2.0
six==1.3.0
wsgiref==0.1.2

PROCFILE:

web: gunicorn myapp.wsgi
celeryd: celery -A tasks worker --loglevel=info -E

设置:

BROKER_URL = 'ironmq://'
CELERY_RESULT_BACKEND = 'ironcache://'
import djcelery
import iron_celery
djcelery.setup_loader()

任务:

from celery import task
@task()
def batchAdd(result_length, result_amount):

视图:

from app import tasks
r = batchAdd.delay(result_length, result_amount)
return HttpResponse(r.task_id)

ALSO TRIED (in VIEWS):

from tasks import batchAdd
r = batchAdd.delay(result_length, result_amount)
return HttpResponse(r.task_id)

AND try THIS AS WELL (in VIEWS):

from app.tasks import batchAdd
r = batchAdd.delay(result_length, result_amount)
return HttpResponse(r.task_id)

下面是我的结构:

projectname
--app
----__init__.py
----__init__.pyc
----admin.py
----admin.pyc
----forms.py
----forms.pyc
----models.py
----models.pyc
----tasks.py
----tests.py
----views.py
----views.pyc
--manage.py
--Procfile
--projectname
----__init__.py
----__init__.pyc
----settings.py
----settings.pyc
----static
----templates
----urls.py
----urls.pyc
----wsgi.py
----wsgi.pyc
--requirements.txt

您是否尝试过通过manage.py加载芹菜?

python manage.py celery worker --loglevel=info

你不能只是运行你的芹菜:

celery -A tasks worker --loglevel=info -E

芹菜需要celeryconfig文件与-A选项。您应该按照dj芹菜文档中的描述运行芹菜。

python manage.py celery worker --loglevel=info

还应该将views.py修改为

from app.tasks import batchAdd

相关内容

  • 没有找到相关文章

最新更新