4

我正在按照https://github.com/jorilallo/celery-flower-heroku上的说明将 Flower celery 监控应用程序部署到 Heroku。

配置和部署我的应用程序后,我在 heroku 日志中看到以下内容:

Traceback (most recent call last):
  File "/app/.heroku/python/bin/flower", line 9, in <module>
    load_entry_point('flower==0.7.0', 'console_scripts', 'flower')()
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/__main__.py", line 11, in main
    flower.execute_from_commandline()
  File "/app/.heroku/python/lib/python2.7/site-packages/celery/bin/base.py", line 306, in execute_from_commandline
    return self.handle_argv(self.prog_name, argv[1:])
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/command.py", line 99, in handle_argv
    return self.run_from_argv(prog_name, argv)
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/command.py", line 75, in run_from_argv
    **app_settings)
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/app.py", line 40, in __init__
    max_tasks_in_memory=max_tasks)
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/events.py", line 60, in __init__
    state = shelve.open(self._db)
  File "/app/.heroku/python/lib/python2.7/shelve.py", line 239, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/app/.heroku/python/lib/python2.7/shelve.py", line 223, in __init__
    Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
  File "/app/.heroku/python/lib/python2.7/anydbm.py", line 85, in open
    return mod.open(file, flag, mode)
  File "/app/.heroku/python/lib/python2.7/dumbdbm.py", line 250, in open
    return _Database(file, mode)
  File "/app/.heroku/python/lib/python2.7/dumbdbm.py", line 71, in __init__
    f = _open(self._datfile, 'w')
IOError: [Errno 2] No such file or directory: 'postgres://USERNAME:PASSWORD@ec2-HOST.compute-1.amazonaws.com:5432/DBNAME.dat'

注意到那里的.dat附录了吗?不知道它来自哪里,它不存在于我的DATABASE_URL环境变量中。

此外,上面的错误是花 0.7。我还尝试安装 0.6,使用它我做得更进一步(即正确识别数据库并建立连接),但是一旦花开始,我就会收到以下警告:

2014-06-19T15:14:02.464424+00:00 app[web.1]: [E 140619 15:14:02 state:138] Failed to inspect workers: '[Errno 104] Connection reset by peer', trying again in 128 seconds
2014-06-19T15:14:02.464844+00:00 app[web.1]: [E 140619 15:14:02 events:103] Failed to capture events: '[Errno 104] Connection reset by peer', trying again in 128 seconds.

在我的浏览器中加载花确实显示了一些选项卡,但没有数据。

我该如何解决这些问题?

4

1 回答 1

5

Flower 不支持数据库持久性。它使用搁置模块将状态保存到文件中 。

于 2014-06-20T10:47:41.843 回答