수색…


데이터베이스 라우팅 파일 추가

Django에서 여러 데이터베이스를 사용하려면 settings.py 에서 각각을 지정하십시오 :

DATABASES = {
    'default': {
        'NAME': 'app_data',
        'ENGINE': 'django.db.backends.postgresql',
        'USER': 'django_db_user',
        'PASSWORD': os.environ['LOCAL_DB_PASSWORD']
    },
    'users': {
        'NAME': 'remote_data',
        'ENGINE': 'django.db.backends.mysql',
        'HOST': 'remote.host.db',
        'USER': 'remote_user',
        'PASSWORD': os.environ['REMOTE_DB_PASSWORD']
    }
}

dbrouters.py 파일을 사용하여 데이터베이스 작동의 각 클래스에 대해 어떤 데이터베이스에서 작동해야하는지 모델을 지정하십시오. 예를 들어 remote_data 저장된 원격 데이터의 경우 다음을 원할 수 있습니다.

class DbRouter(object):
    """
    A router to control all database operations on models in the
    auth application.
    """
    def db_for_read(self, model, **hints):
        """
        Attempts to read remote models go to remote database.
        """
        if model._meta.app_label == 'remote':
            return 'remote_data'
        return 'app_data'

    def db_for_write(self, model, **hints):
        """
        Attempts to write remote models go to the remote database.
        """
        if model._meta.app_label == 'remote':
            return 'remote_data'
        return 'app_data'

    def allow_relation(self, obj1, obj2, **hints):
        """
        Do not allow relations involving the remote database
        """
        if obj1._meta.app_label == 'remote' or \
           obj2._meta.app_label == 'remote':
           return False
        return None

    def allow_migrate(self, db, app_label, model_name=None, **hints):
        """
        Do not allow migrations on the remote database
        """
        if model._meta.app_label == 'remote':
            return False
        return True

마지막으로 settings.py dbrouter.py 를 추가합니다.

DATABASE_ROUTERS = ['path.to.DbRouter', ]

코드에서 다른 데이터베이스 지정하기

일반적인 obj.save() 메서드는 기본 데이터베이스를 사용하거나 데이터베이스 라우터가 사용되면 db_for_write 지정된대로 데이터베이스를 사용합니다. 다음을 사용하여 재정의 할 수 있습니다.

obj.save(using='other_db')
obj.delete(using='other_db')

마찬가지로, 독서를 위해 :

MyModel.objects.using('other_db').all()


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow