在heroku上部署路由器的Django多个数据库

Posted

技术标签:

【中文标题】在heroku上部署路由器的Django多个数据库【英文标题】:Django multiple databases with router deployment on heroku 【发布时间】:2016-10-26 06:24:27 【问题描述】:

我正在尝试使用 heroku 在我的 django 项目上配置多个数据库和一个数据库路由器。

使用一个数据库很容易

DATABASES =  'default': dj_database_url.config() 

在我的本地设置中

DATABASES = 
    'default': 
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME':  'nameuser3',                  
        'USER': 'postgres',
        'PASSWORD': 'XXXXXXXX',
        'HOST': '127.0.0.1',
        'PORT': '5432',
    ,
    'admindb': 
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME':  'nameadmin4',                  
        'USER': 'postgres',
        'PASSWORD': 'xxxxxx',
        'HOST': '127.0.0.1',
        'PORT': '5432',
        

我还设置了数据库路由器来读取和写入特定的数据库。

def db_for_read(self, model, **hints):
    if model._meta.app_label == 'sgdb':
        return 'admindb'
    return 'default'

def db_for_write(self, model, **hints):
    if model._meta.app_label == 'sgdb':
        return 'admindb'
    return 'default'

def allow_relation(self, obj1, obj2, **hints):
    db1 = self.DATABASE_APPS_MAPPING.get(obj1._meta.app_label)
    db2 = self.DATABASE_APPS_MAPPING.get(obj2._meta.app_label)
    if db1 and db2:
        return db1 == db2
    return 'None'

def allow_migrate(self, db, app_label, model_name=None, **hints):
    return True

我用谷歌搜索,但找不到任何关于如何配置数据库路由器以使用 heroku 数据库的结论。关于如何做到这一点的任何线索?


完整的settings.py我上传到heroku-

import dj_database_url
import os

"""
Django settings for example project.

Generated by 'django-admin startproject' using Django 1.9.

For more information on this file, see
https://docs.djangoproject.com/en/1.9/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.9/ref/settings/
"""



# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
# BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
BASE_DIR = os.path.dirname(os.path.dirname(__file__))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'django.contrib.sites',
    'disqus',
    'django.contrib.sitemaps',
    'easy_maps',
    'hitcount',
    'accounts',
    'localflavor',
    'carts',
    'marketing',
    'crispy_forms',
    'allauth',
    'allauth.account',
    'allauth.socialaccount',
    'allauth.socialaccount.providers.facebook'
]


CRISPY_TEMPLATE_PACK = 'bootstrap3'
# Sign IN settings
ACCOUNT_AUTHENTICATION_METHOD = 'email'
ACCOUNT_LOGIN_ON_EMAIL_CONFIRMATION = True
# Sign UP settings
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_USERNAME_REQUIRED = False
ACCOUNT_EMAIL_VERIFICATION = 'optional'
LOGIN_REDIRECT_URL = '/'
LOGOUT_REDIRECT_URL = '/'
SOCIALACCOUNT_QUERY_EMAIL = True
SOCIALACCOUNT_PROVIDERS = 
    'facebook': 
        'SCOPE': ['email', 'publish_stream'],
        'METHOD': 'js_sdk'  # instead of 'oauth2'
    


SITE_NAME='example.com'


#Newsletter
NEWSLETTER_CONFIRM_EMAIL = False

HITCOUNT_HITS_PER_IP_LIMIT = 0
HITCOUNT_KEEP_HIT_IN_DATABASE =  'days': 30 


DISQUS_WEBSITE_SHORTNAME = 'example'

EMAIL_BACKEND =  'django.core.mail.backends.smtp.EmailBackend' 
DEFAULT_FROM_EMAIL = 'example@gmail.com'
EMAIL_HOST =  'smtp.gmail.com'
EMAIL_HOST_USER = 'example@gmail.com'
EMAIL_HOST_PASSWORD = 'example'
EMAIL_USE_TLS = True 
EMAIL_PORT = 587

SITE_ID = 2

DEBUG = False

if DEBUG: 
    SITE_URL = "http://127.0.0.1:8000"
if not DEBUG :
    SITE_URL = "http://www.example.com"


MIDDLEWARE_CLASSES = [
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'example.urls'

TEMPLATES = [
    
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        'APP_DIRS': True,
        'OPTIONS': 
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        ,
    ,
]

WSGI_APPLICATION = 'example.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.9/ref/settings/#databases



# Password validation
# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
    
        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
    ,
    
        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
    ,
    
        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
    ,
    
        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
    ,
]

# Internationalization
# https://docs.djangoproject.com/en/1.9/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, javascript, Images)
# https://docs.djangoproject.com/en/1.9/howto/static-files/

# STATIC_URL = '/static/'
# STATIC_ROOT = os.path.join((BASE_DIR), 'static_cdn')
# MEDIA_ROOT = os.path.join((BASE_DIR), 'media_cdn')
# MEDIA_URL = '/media/'

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join((BASE_DIR), 'static_cdn')
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join((BASE_DIR), 'media_cdn')
STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
]

# db_from_env = dj_database_url.config(conn_max_age=500)
# db_from_env2 = dj_database_url.config(default ='postgres://address', conn_max_age=500)
# DATABASES['default'].update(db_from_env)
# DATABASES['admin'].update(db_from_env2)

DATABASES = 'default': dj_database_url.config(default='postgres://address') , 
            'admin': dj_database_url.config(default='postgres://urladdress')

DATABASE_ROUTERS = ['exampleapp.routers.DatabaseAppsRouter',]



SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')

ALLOWED_HOSTS = ['*']

【问题讨论】:

我在pythonanywhere上实现过双数据库,对Heroku不熟悉。您的完整 settings.py 文件是什么样子的 - 编辑您的确切 abs/文件路径,但不完整,如果需要,删除您的 Secret_key。我猜你已经有一个 models.py 了? 我只是附加了 settings.py ,如果可行的话,会进行命中和试验。但是我的heroku run python makemigrations 每次都失败:(。整天都在为此苦苦挣扎 还没有完成 postgre db——你签出了吗:docs.djangoproject.com/en/1.9/topics/db/multi-db .. 你的 DATABASES = 部分看起来不同。您是否能够完全实现一个数据库? 是的,一个数据库很简单,双数据库在我的本地运行良好。问题是heroku部署如何维护双数据库系统。 【参考方案1】:

啊终于找到了。

首先要做的。 heroku pg:信息。查看哪些数据库 url 链接到您的应用程序。您应该会看到您的应用程序的多个数据库。否则在 heroku 上创建一个新数据库并将其与您的应用程序连接。

然后在 settings.py 中保持与本地 settings.py 相同的方式。不要使用 dj_database_url。默认为 database_url。瞧,heroku 都是为多个数据库设置的。

唷花了好几个小时才弄明白。谢谢

DATABASES = 
    'default': 
        'ENGINE': 'django.db.backends.postgresql',
        'NAME':  'xxxxxxx',                  
        'USER': 'xxxxxxx',
        'PASSWORD': 'xxxxxxxxxxx',
        'HOST': 'xxxxxxxxxxxxxxx.compute-1.amazonaws.com',
        'PORT': '5432',
    ,
    'admin': 
        'ENGINE': 'django.db.backends.postgresql',
        'NAME':  'xxxxxxxxxxxx',                  
        'USER': 'xxxxxxxxxxxxxxxxxxx',
        'PASSWORD': 'xxxxxxxxxxxxxxxxxxxx',
        'HOST': 'xxxxxxxxxxxxxxxxxx.compute-1.amazonaws.com',
        'PORT': '5432',
        

【讨论】:

不要使用 dj_database_url。默认为 database_url 这是我需要的部分,谢谢! 我一直在寻找同样的东西,但在这里:github.com/kennethreitz/dj-database-url/issues/99 你可以通过 os.environ 将其他环境变量解析到函数中。

以上是关于在heroku上部署路由器的Django多个数据库的主要内容,如果未能解决你的问题,请参考以下文章

django 在 heroku 上部署单独的 web 和 api 端点

Django:使用 sqlite3 作为数据库在 Heroku 上部署应用程序

在 Heroku 上部署时出现 Django 1.7 迁移错误

在 Heroku 服务器上部署 Django 错误 (500) - 据说是静态文件问题

在heroku上部署django网站时出错

在 Heroku 上部署 React 和 Django