5

我正在尝试将Flask应用程序部署到Heroku。我使用Peewee作为 Postgres 数据库的 ORM。当我按照标准 Heroku 步骤部署 Flask时,进入后 Web 进程崩溃heroku ps:scale web=1。以下是日志所说的:

Starting process with command `python app.py`
/app/.heroku/venv/lib/python2.7/site-packages/peewee.py:2434: UserWarning: Table for <class 'flask_peewee.auth.User'> ("user") is reserved, please override using Meta.db_table
cls, _meta.db_table,
Traceback (most recent call last):
File "app.py", line 167, in <module>
auth.User.create_table(fail_silently=True)
File "/app/.heroku/venv/lib/python2.7/site-packages/peewee.py", line 2518, in create_table if fail_silently and cls.table_exists():
File "/app/.heroku/venv/lib/python2.7/site-packages/peewee.py", line 2514, in table_exists return cls._meta.db_table in cls._meta.database.get_tables()
File "/app/.heroku/venv/lib/python2.7/site-packages/peewee.py", line 507, in get_tables ORDER BY c.relname""")
File "/app/.heroku/venv/lib/python2.7/site-packages/peewee.py", line 313, in execute cursor = self.get_cursor()
File "/app/.heroku/venv/lib/python2.7/site-packages/peewee.py", line 310, in get_cursor return self.get_conn().cursor()
File "/app/.heroku/venv/lib/python2.7/site-packages/peewee.py", line 306, in get_conn self.connect()
File "/app/.heroku/venv/lib/python2.7/site-packages/peewee.py", line 296, in connect self.__local.conn = self.adapter.connect(self.
database, **self.connect_kwargs)
File "/app/.heroku/venv/lib/python2.7/site-packages/peewee.py", line 199, in connect return psycopg2.connect(database=database, **kwargs)
File "/app/.heroku/venv/lib/python2.7/site-packages/psycopg2/__init__.py", line 179, in connect connection_factory=connection_factory, async=async)
psycopg2.OperationalError: could not connect to server: No such file or directory
Is the server running locally and accepting connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
Process exited with status 1
State changed from starting to crashed

我尝试了很多不同的方法来让 Heroku 允许我的应用程序与 Postgres 数据库通信,但没有任何运气。是否有捷径可寻?我需要做什么来配置 Flask/Peewee 以便我可以在 Heroku 上使用数据库?

4

4 回答 4

4

根据Peewee 文档Proxy(),除非您的本地数据库驱动程序与远程驱动程序不同(即本地,您正在使用 SQLite,而远程您正在使用 Postgres),否则您不想使用。但是,如果您在本地和远程都使用 Postgres,则更改要简单得多。在这种情况下,您只需在运行时更改连接值(数据库名称、用户名、密码、主机、端口等),而无需使用Proxy().

Peewee 有一个用于数据库连接的内置 URL 解析器。以下是如何使用它:

import os
from peewee import *
from playhouse.db_url import connect

db = connect(os.environ.get('DATABASE_URL'))

class BaseModel(Model):
    class Meta:
        database = db

在这个例子中,peewee 的db_url模块读取环境变量DATABASE_URL并解析它以提取相关的连接变量。然后它使用这些值创建一个PostgresqlDatabase 对象。

在本地,您需要设置DATABASE_URL为环境变量。您可以根据您使用的任何外壳的说明执行此操作。或者,如果您想使用 Heroku 工具链(使用 启动本地服务器heroku local),您可以将其添加到项目顶层调用的文件.env中。对于远程设置,您需要将数据库 URL 添加为远程 Heroku 环境变量。您可以使用以下命令执行此操作:

heroku config:set DATABASE_URL=postgresql://myurl

您可以通过进入 Heroku、导航到您的数据库并单击“数据库凭据”来找到该 URL。它列在 下URI

于 2017-07-23T16:31:46.073 回答
3

heroku 配置:设置 HEROKU=1

import os
import urlparse
import psycopg2
from flask import Flask
from flask_peewee.db import Database


if 'HEROKU' in os.environ:
    DEBUG = False
    urlparse.uses_netloc.append('postgres')
    url = urlparse.urlparse(os.environ['DATABASE_URL'])
    DATABASE = {
        'engine': 'peewee.PostgresqlDatabase',
        'name': url.path[1:],
        'user': url.username,
        'password': url.password,
        'host': url.hostname,
        'port': url.port,
    }
else:
    DEBUG = True
    DATABASE = {
        'engine': 'peewee.PostgresqlDatabase',
        'name': 'framingappdb',
        'user': 'postgres',
        'password': 'postgres',
        'host': 'localhost',
        'port': 5432 ,
        'threadlocals': True
    }

app = Flask(__name__)
app.config.from_object(__name__)
db = Database(app)

修改了 coleifer 的回答以回答 hasenj 的评论。请将其中之一标记为已接受的答案。

于 2013-11-21T20:31:31.153 回答
3

你在解析 DATABASE_URL 环境变量吗?它看起来像这样:

postgres://username:password@host:port/database_name

因此,您需要在打开与数据库的连接之前将其拉入并解析它。根据您声明数据库的方式(在您的配置中或在您的 wsgi 应用程序旁边),它可能如下所示:

import os
import urlparse

urlparse.uses_netloc.append('postgres')
url = urlparse.urlparse(os.environ['DATABASE_URL'])

# for your config
DATABASE = {
    'engine': 'peewee.PostgresqlDatabase',
    'name': url.path[1:],
    'password': url.password,
    'host': url.hostname,
    'port': url.port,
}

请参阅此处的注释:https ://devcenter.heroku.com/articles/django

于 2012-05-28T14:58:39.277 回答
2

我已经设法让我的 Flask 应用程序使用 Peewee 使用以下代码在 Heroku 上工作:

# persons.py

import os
from peewee import *

db_proxy = Proxy()

# Define your models here
class Person(Model):
    name = CharField(max_length=20, unique=True)
    age  = IntField()

    class Meta:
        database = db_proxy

# Import modules based on the environment.
# The HEROKU value first needs to be set on Heroku
# either through the web front-end or through the command
# line (if you have Heroku Toolbelt installed, type the following:
# heroku config:set HEROKU=1).
if 'HEROKU' in os.environ:
    import urlparse, psycopg2
    urlparse.uses_netloc.append('postgres')
    url = urlparse.urlparse(os.environ["DATABASE_URL"])
    db = PostgresqlDatabase(database=url.path[1:], user=url.username, password=url.password, host=url.hostname, port=url.port)
    db_proxy.initialize(db)
else:
    db = SqliteDatabase('persons.db')
    db_proxy.initialize(db)

if __name__ == '__main__':
    db_proxy.connect()
    db_proxy.create_tables([Person], safe=True)

您应该已经将 Postgres 数据库插件附加到您的应用程序。您可以通过命令行或 Web 前端执行此操作。假设数据库已经附加到您的应用程序并且您已经部署了上述更改,请登录到 Heroku 并创建表:

$ heroku login
$ heroku run bash
$ python persons.py

检查表是否已创建:

$ heroku pg:psql
your_app_name::DATABASE=> \dt 

然后在另一个 Python 脚本(例如请求处理程序)中导入此文件(本例中为 persons.py)。您需要显式管理数据库连接:

# server.py

from flask import g
from persons import db_proxy

@app.before_request
def before_request():
    g.db = db_proxy
    g.db.connect()

@app.after_request
def after_request(response):
    g.db.close()
    return response

…

参考:

于 2015-06-17T15:38:48.727 回答