खोज…


डेटाबेस रूटिंग फ़ाइल जोड़ना

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 अपना 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