2009-12-22 23:18:51 +08:00
|
|
|
==================
|
2010-01-10 01:09:20 +08:00
|
|
|
Multiple databases
|
2009-12-22 23:18:51 +08:00
|
|
|
==================
|
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
This topic guide describes Django's support for interacting with
|
|
|
|
multiple databases. Most of the rest of Django's documentation assumes
|
|
|
|
you are interacting with a single database. If you want to interact
|
|
|
|
with multiple databases, you'll need to take some additional steps.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
Defining your databases
|
|
|
|
=======================
|
|
|
|
|
|
|
|
The first step to using more than one database with Django is to tell
|
|
|
|
Django about the database servers you'll be using. This is done using
|
|
|
|
the :setting:`DATABASES` setting. This setting maps database aliases,
|
|
|
|
which are a way to refer to a specific database throughout Django, to
|
|
|
|
a dictionary of settings for that specific connection. The settings in
|
|
|
|
the inner dictionaries are described fully in the :setting:`DATABASES`
|
|
|
|
documentation.
|
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
Databases can have any alias you choose. However, the alias
|
|
|
|
``default`` has special significance. Django uses the database with
|
|
|
|
the alias of ``default`` when no other database has been selected. If
|
|
|
|
you don't have a ``default`` database, you need to be careful to
|
|
|
|
always specify the database that you want to use.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
The following is an example ``settings.py`` snippet defining two
|
2010-01-10 01:09:20 +08:00
|
|
|
databases -- a default PostgreSQL database and a MySQL database called
|
2009-12-23 00:10:48 +08:00
|
|
|
``users``:
|
|
|
|
|
|
|
|
.. code-block:: python
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'NAME': 'app_data',
|
2009-12-25 18:26:36 +08:00
|
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
2009-12-22 23:18:51 +08:00
|
|
|
'USER': 'postgres_user',
|
|
|
|
'PASSWORD': 's3krit'
|
|
|
|
},
|
|
|
|
'users': {
|
2010-02-22 07:37:19 +08:00
|
|
|
'NAME': 'user_data',
|
2009-12-25 18:26:36 +08:00
|
|
|
'ENGINE': 'django.db.backends.mysql',
|
2009-12-22 23:18:51 +08:00
|
|
|
'USER': 'mysql_user',
|
|
|
|
'PASSWORD': 'priv4te'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
If you attempt to access a database that you haven't defined in your
|
2010-01-10 01:09:20 +08:00
|
|
|
:setting:`DATABASES` setting, Django will raise a
|
2009-12-22 23:18:51 +08:00
|
|
|
``django.db.utils.ConnectionDoesNotExist`` exception.
|
|
|
|
|
2010-01-07 19:37:49 +08:00
|
|
|
Synchronizing your databases
|
|
|
|
============================
|
|
|
|
|
|
|
|
The :djadmin:`syncdb` management command operates on one database at a
|
|
|
|
time. By default, it operates on the ``default`` database, but by
|
|
|
|
providing a :djadminopt:`--database` argument, you can tell syncdb to
|
2010-01-10 01:09:20 +08:00
|
|
|
synchronize a different database. So, to synchronize all models onto
|
2010-01-07 19:37:49 +08:00
|
|
|
all databases in our example, you would need to call::
|
|
|
|
|
|
|
|
$ ./manage.py syncdb
|
|
|
|
$ ./manage.py syncdb --database=users
|
|
|
|
|
|
|
|
If you don't want every application to be synchronized onto a
|
2010-01-25 20:23:30 +08:00
|
|
|
particular database, you can define a :ref:`database
|
|
|
|
router<topics-db-multi-db-routing>` that implements a policy
|
|
|
|
constraining the availability of particular models.
|
2010-01-07 19:37:49 +08:00
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
Alternatively, if you want fine-grained control of synchronization,
|
2010-01-07 19:37:49 +08:00
|
|
|
you can pipe all or part of the output of :djadmin:`sqlall` for a
|
2010-01-10 01:09:20 +08:00
|
|
|
particular application directly into your database prompt, like this::
|
|
|
|
|
2010-03-10 20:35:55 +08:00
|
|
|
$ ./manage.py sqlall sales | ./manage.py dbshell
|
2010-01-07 19:37:49 +08:00
|
|
|
|
|
|
|
Using other management commands
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
The other ``django-admin.py`` commands that interact with the database
|
|
|
|
operate in the same way as :djadmin:`syncdb` -- they only ever operate
|
2010-01-10 01:09:20 +08:00
|
|
|
on one database at a time, using :djadminopt:`--database` to control
|
|
|
|
the database used.
|
2010-01-07 19:37:49 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
.. _topics-db-multi-db-routing:
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
Automatic database routing
|
|
|
|
==========================
|
2010-01-10 01:09:20 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
The easiest way to use multiple databases is to set up a database
|
|
|
|
routing scheme. The default routing scheme ensures that objects remain
|
|
|
|
'sticky' to their original database (i.e., an object retrieved from
|
2010-01-28 11:04:24 +08:00
|
|
|
the ``foo`` database will be saved on the same database). The default
|
|
|
|
routing scheme ensures that if a database isn't specified, all queries
|
|
|
|
fall back to the ``default`` database.
|
|
|
|
|
|
|
|
You don't have to do anything to activate the default routing scheme
|
|
|
|
-- it is provided 'out of the box' on every Django project. However,
|
|
|
|
if you want to implement more interesting database allocation
|
|
|
|
behaviors, you can define and install your own database routers.
|
2009-12-23 00:10:48 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
Database routers
|
|
|
|
----------------
|
|
|
|
|
2010-01-27 15:56:53 +08:00
|
|
|
A database Router is a class that provides up to four methods:
|
2010-01-22 22:30:06 +08:00
|
|
|
|
|
|
|
.. method:: db_for_read(model, **hints)
|
|
|
|
|
|
|
|
Suggest the database that should be used for read operations for
|
|
|
|
objects of type ``model``.
|
|
|
|
|
|
|
|
If a database operation is able to provide any additional
|
|
|
|
information that might assist in selecting a database, it will be
|
|
|
|
provided in the ``hints`` dictionary. Details on valid hints are
|
|
|
|
provided :ref:`below <topics-db-multi-db-hints>`.
|
|
|
|
|
|
|
|
Returns None if there is no suggestion.
|
|
|
|
|
|
|
|
.. method:: db_for_write(model, **hints)
|
|
|
|
|
|
|
|
Suggest the database that should be used for writes of objects of
|
|
|
|
type Model.
|
|
|
|
|
|
|
|
If a database operation is able to provide any additional
|
|
|
|
information that might assist in selecting a database, it will be
|
|
|
|
provided in the ``hints`` dictionary. Details on valid hints are
|
|
|
|
provided :ref:`below <topics-db-multi-db-hints>`.
|
|
|
|
|
|
|
|
Returns None if there is no suggestion.
|
|
|
|
|
|
|
|
.. method:: allow_relation(obj1, obj2, **hints)
|
|
|
|
|
|
|
|
Return True if a relation between obj1 and obj2 should be
|
|
|
|
allowed, False if the relation should be prevented, or None if
|
|
|
|
the router has no opinion. This is purely a validation operation,
|
|
|
|
used by foreign key and many to many operations to determine if a
|
|
|
|
relation should be allowed between two objects.
|
|
|
|
|
2010-01-25 20:23:30 +08:00
|
|
|
.. method:: allow_syncdb(db, model)
|
|
|
|
|
|
|
|
Determine if the ``model`` should be synchronized onto the
|
|
|
|
database with alias ``db``. Return True if the model should be
|
|
|
|
synchronized, False if it should not be synchronized, or None if
|
|
|
|
the router has no opinion. This method can be used to determine
|
|
|
|
the availability of a model on a given database.
|
|
|
|
|
2011-03-26 11:54:53 +08:00
|
|
|
A router doesn't have to provide *all* these methods -- it may omit one
|
|
|
|
or more of them. If one of the methods is omitted, Django will skip
|
|
|
|
that router when performing the relevant check.
|
2010-01-27 15:56:53 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
.. _topics-db-multi-db-hints:
|
|
|
|
|
|
|
|
Hints
|
|
|
|
~~~~~
|
|
|
|
|
|
|
|
The hints received by the database router can be used to decide which
|
|
|
|
database should receive a given request.
|
|
|
|
|
|
|
|
At present, the only hint that will be provided is ``instance``, an
|
|
|
|
object instance that is related to the read or write operation that is
|
|
|
|
underway. This might be the instance that is being saved, or it might
|
|
|
|
be an instance that is being added in a many-to-many relation. In some
|
2010-01-23 12:32:34 +08:00
|
|
|
cases, no instance hint will be provided at all. The router checks for
|
|
|
|
the existence of an instance hint, and determine if that hint should be
|
2010-01-22 22:30:06 +08:00
|
|
|
used to alter routing behavior.
|
|
|
|
|
|
|
|
Using routers
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Database routers are installed using the :setting:`DATABASE_ROUTERS`
|
|
|
|
setting. This setting defines a list of class names, each specifying a
|
|
|
|
router that should be used by the master router
|
|
|
|
(``django.db.router``).
|
|
|
|
|
|
|
|
The master router is used by Django's database operations to allocate
|
|
|
|
database usage. Whenever a query needs to know which database to use,
|
|
|
|
it calls the master router, providing a model and a hint (if
|
|
|
|
available). Django then tries each router in turn until a database
|
|
|
|
suggestion can be found. If no suggestion can be found, it tries the
|
|
|
|
current ``_state.db`` of the hint instance. If a hint instance wasn't
|
|
|
|
provided, or the instance doesn't currently have database state, the
|
|
|
|
master router will allocate the ``default`` database.
|
|
|
|
|
|
|
|
An example
|
|
|
|
----------
|
|
|
|
|
|
|
|
.. admonition:: Example purposes only!
|
|
|
|
|
|
|
|
This example is intended as a demonstration of how the router
|
|
|
|
infrastructure can be used to alter database usage. It
|
|
|
|
intentionally ignores some complex issues in order to
|
|
|
|
demonstrate how routers are used.
|
|
|
|
|
2010-05-09 15:44:06 +08:00
|
|
|
This example won't work if any of the models in ``myapp`` contain
|
|
|
|
relationships to models outside of the ``other`` database.
|
|
|
|
:ref:`Cross-database relationships <no_cross_database_relations>`
|
|
|
|
introduce referential integrity problems that Django can't
|
|
|
|
currently handle.
|
2010-01-22 22:30:06 +08:00
|
|
|
|
|
|
|
The master/slave configuration described is also flawed -- it
|
|
|
|
doesn't provide any solution for handling replication lag (i.e.,
|
|
|
|
query inconsistencies introduced because of the time taken for a
|
|
|
|
write to propagate to the slaves). It also doesn't consider the
|
2010-01-23 12:32:34 +08:00
|
|
|
interaction of transactions with the database utilization strategy.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2012-09-09 04:02:00 +08:00
|
|
|
So - what does this mean in practice? Let's consider another sample
|
|
|
|
configuration. This one will have several databases: one for the
|
|
|
|
``auth`` application, and all other apps using a master/slave setup
|
|
|
|
with two read slaves. Here are the settings specifying these
|
|
|
|
databases::
|
2010-01-22 22:30:06 +08:00
|
|
|
|
2012-09-09 04:02:00 +08:00
|
|
|
DATABASES = {
|
|
|
|
'auth_db': {
|
|
|
|
'NAME': 'auth_db',
|
|
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
|
|
'USER': 'mysql_user',
|
|
|
|
'PASSWORD': 'swordfish',
|
|
|
|
},
|
|
|
|
'master': {
|
|
|
|
'NAME': 'master',
|
|
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
|
|
'USER': 'mysql_user',
|
|
|
|
'PASSWORD': 'spam',
|
|
|
|
},
|
|
|
|
'slave1': {
|
|
|
|
'NAME': 'slave1',
|
|
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
|
|
'USER': 'mysql_user',
|
|
|
|
'PASSWORD': 'eggs',
|
|
|
|
},
|
|
|
|
'slave2': {
|
|
|
|
'NAME': 'slave2',
|
|
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
|
|
'USER': 'mysql_user',
|
|
|
|
'PASSWORD': 'bacon',
|
|
|
|
},
|
|
|
|
}
|
2010-01-22 22:30:06 +08:00
|
|
|
|
2012-09-09 04:02:00 +08:00
|
|
|
Now we'll need to handle routing. First we want a router that knows to
|
|
|
|
send queries for the ``auth`` app to ``auth_db``::
|
|
|
|
|
|
|
|
class AuthRouter(object):
|
|
|
|
"""
|
|
|
|
A router to control all database operations on models in the
|
|
|
|
auth application.
|
|
|
|
"""
|
2012-09-09 04:08:01 +08:00
|
|
|
def db_for_read(self, model, **hints):
|
|
|
|
"""
|
|
|
|
Attempts to read auth models go to auth_db.
|
|
|
|
"""
|
|
|
|
if model._meta.app_label == 'auth':
|
|
|
|
return 'auth_db'
|
|
|
|
return None
|
|
|
|
|
|
|
|
def db_for_write(self, model, **hints):
|
|
|
|
"""
|
|
|
|
Attempts to write auth models go to auth_db.
|
|
|
|
"""
|
|
|
|
if model._meta.app_label == 'auth':
|
|
|
|
return 'auth_db'
|
2012-09-09 04:14:13 +08:00
|
|
|
return None
|
2012-09-09 04:08:01 +08:00
|
|
|
|
|
|
|
def allow_relation(self, obj1, obj2, **hints):
|
|
|
|
"""
|
|
|
|
Allow relations if a model in the auth app is involved.
|
|
|
|
"""
|
|
|
|
if obj1._meta.app_label == 'auth' or \
|
2012-09-09 04:02:00 +08:00
|
|
|
obj2._meta.app_label == 'auth':
|
2012-09-09 04:08:01 +08:00
|
|
|
return True
|
|
|
|
return None
|
|
|
|
|
|
|
|
def allow_syncdb(self, db, model):
|
|
|
|
"""
|
|
|
|
Make sure the auth app only appears in the 'auth_db'
|
|
|
|
database.
|
|
|
|
"""
|
|
|
|
if db == 'auth_db':
|
|
|
|
return model._meta.app_label == 'auth'
|
|
|
|
elif model._meta.app_label == 'auth':
|
|
|
|
return False
|
|
|
|
return None
|
2012-09-09 04:02:00 +08:00
|
|
|
|
|
|
|
And we also want a router that sends all other apps to the
|
|
|
|
master/slave configuration, and randomly chooses a slave to read
|
|
|
|
from::
|
|
|
|
|
|
|
|
import random
|
2010-01-22 22:30:06 +08:00
|
|
|
|
2010-08-30 18:24:18 +08:00
|
|
|
class MasterSlaveRouter(object):
|
2010-01-22 22:30:06 +08:00
|
|
|
def db_for_read(self, model, **hints):
|
2012-09-09 04:08:01 +08:00
|
|
|
"""
|
|
|
|
Reads go to a randomly-chosen slave.
|
|
|
|
"""
|
|
|
|
return random.choice(['slave1', 'slave2'])
|
|
|
|
|
|
|
|
def db_for_write(self, model, **hints):
|
|
|
|
"""
|
|
|
|
Writes always go to master.
|
|
|
|
"""
|
|
|
|
return 'master'
|
|
|
|
|
|
|
|
def allow_relation(self, obj1, obj2, **hints):
|
|
|
|
"""
|
|
|
|
Relations between objects are allowed if both objects are
|
|
|
|
in the master/slave pool.
|
|
|
|
"""
|
|
|
|
db_list = ('master', 'slave1', 'slave2')
|
|
|
|
if obj1.state.db in db_list and obj2.state.db in db_list:
|
|
|
|
return True
|
|
|
|
return None
|
|
|
|
|
|
|
|
def allow_syncdb(self, db, model):
|
|
|
|
"""
|
|
|
|
All non-auth models end up in this pool.
|
|
|
|
"""
|
|
|
|
return True
|
2012-09-09 04:02:00 +08:00
|
|
|
|
|
|
|
Finally, in the settings file, we add the following (substituting
|
|
|
|
``path.to.`` with the actual python path to the module(s) where the
|
|
|
|
routers are defined)::
|
|
|
|
|
|
|
|
DATABASE_ROUTERS = ['path.to.AuthRouter', 'path.to.MasterSlaveRouter']
|
2010-01-22 22:30:06 +08:00
|
|
|
|
2010-01-25 20:23:30 +08:00
|
|
|
The order in which routers are processed is significant. Routers will
|
|
|
|
be queried in the order the are listed in the
|
|
|
|
:setting:`DATABASE_ROUTERS` setting . In this example, the
|
2012-09-09 04:02:00 +08:00
|
|
|
``AuthRouter`` is processed before the ``MasterSlaveRouter``, and as a
|
|
|
|
result, decisions concerning the models in ``auth`` are processed
|
2010-01-25 20:23:30 +08:00
|
|
|
before any other decision is made. If the :setting:`DATABASE_ROUTERS`
|
|
|
|
setting listed the two routers in the other order,
|
|
|
|
``MasterSlaveRouter.allow_syncdb()`` would be processed first. The
|
|
|
|
catch-all nature of the MasterSlaveRouter implementation would mean
|
|
|
|
that all models would be available on all databases.
|
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
With this setup installed, lets run some Django code::
|
|
|
|
|
2012-09-09 04:02:00 +08:00
|
|
|
>>> # This retrieval will be performed on the 'auth_db' database
|
2010-01-22 22:30:06 +08:00
|
|
|
>>> fred = User.objects.get(username='fred')
|
|
|
|
>>> fred.first_name = 'Frederick'
|
|
|
|
|
2012-09-09 04:02:00 +08:00
|
|
|
>>> # This save will also be directed to 'auth_db'
|
2010-01-22 22:30:06 +08:00
|
|
|
>>> fred.save()
|
|
|
|
|
|
|
|
>>> # These retrieval will be randomly allocated to a slave database
|
|
|
|
>>> dna = Person.objects.get(name='Douglas Adams')
|
|
|
|
|
|
|
|
>>> # A new object has no database allocation when created
|
|
|
|
>>> mh = Book(title='Mostly Harmless')
|
|
|
|
|
|
|
|
>>> # This assignment will consult the router, and set mh onto
|
|
|
|
>>> # the same database as the author object
|
|
|
|
>>> mh.author = dna
|
|
|
|
|
|
|
|
>>> # This save will force the 'mh' instance onto the master database...
|
|
|
|
>>> mh.save()
|
|
|
|
|
|
|
|
>>> # ... but if we re-retrieve the object, it will come back on a slave
|
|
|
|
>>> mh = Book.objects.get(title='Mostly Harmless')
|
|
|
|
|
2010-01-25 20:23:30 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
Manually selecting a database
|
|
|
|
=============================
|
|
|
|
|
|
|
|
Django also provides an API that allows you to maintain complete control
|
|
|
|
over database usage in your code. A manually specified database allocation
|
|
|
|
will take priority over a database allocated by a router.
|
|
|
|
|
|
|
|
Manually selecting a database for a ``QuerySet``
|
|
|
|
------------------------------------------------
|
|
|
|
|
|
|
|
You can select the database for a ``QuerySet`` at any point in the
|
|
|
|
``QuerySet`` "chain." Just call ``using()`` on the ``QuerySet`` to get
|
|
|
|
another ``QuerySet`` that uses the specified database.
|
|
|
|
|
|
|
|
``using()`` takes a single argument: the alias of the database on
|
|
|
|
which you want to run the query. For example::
|
|
|
|
|
|
|
|
>>> # This will run on the 'default' database.
|
2009-12-22 23:18:51 +08:00
|
|
|
>>> Author.objects.all()
|
2010-01-22 22:30:06 +08:00
|
|
|
|
|
|
|
>>> # So will this.
|
2009-12-22 23:18:51 +08:00
|
|
|
>>> Author.objects.using('default').all()
|
2010-01-22 22:30:06 +08:00
|
|
|
|
|
|
|
>>> # This will run on the 'other' database.
|
2009-12-22 23:18:51 +08:00
|
|
|
>>> Author.objects.using('other').all()
|
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
Selecting a database for ``save()``
|
2010-01-22 22:30:06 +08:00
|
|
|
-----------------------------------
|
2010-01-10 01:09:20 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
Use the ``using`` keyword to ``Model.save()`` to specify to which
|
|
|
|
database the data should be saved.
|
2010-01-10 01:09:20 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
For example, to save an object to the ``legacy_users`` database, you'd
|
|
|
|
use this::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
>>> my_object.save(using='legacy_users')
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
If you don't specify ``using``, the ``save()`` method will save into
|
|
|
|
the default database allocated by the routers.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
Moving an object from one database to another
|
2010-01-22 22:30:06 +08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
If you've saved an instance to one database, it might be tempting to
|
|
|
|
use ``save(using=...)`` as a way to migrate the instance to a new
|
|
|
|
database. However, if you don't take appropriate steps, this could
|
|
|
|
have some unexpected consequences.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
Consider the following example::
|
|
|
|
|
|
|
|
>>> p = Person(name='Fred')
|
2010-01-10 01:09:20 +08:00
|
|
|
>>> p.save(using='first') # (statement 1)
|
|
|
|
>>> p.save(using='second') # (statement 2)
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
In statement 1, a new ``Person`` object is saved to the ``first``
|
2009-12-22 23:18:51 +08:00
|
|
|
database. At this time, ``p`` doesn't have a primary key, so Django
|
|
|
|
issues a SQL ``INSERT`` statement. This creates a primary key, and
|
|
|
|
Django assigns that primary key to ``p``.
|
|
|
|
|
|
|
|
When the save occurs in statement 2, ``p`` already has a primary key
|
|
|
|
value, and Django will attempt to use that primary key on the new
|
|
|
|
database. If the primary key value isn't in use in the ``second``
|
|
|
|
database, then you won't have any problems -- the object will be
|
2010-01-10 01:09:20 +08:00
|
|
|
copied to the new database.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
However, if the primary key of ``p`` is already in use on the
|
2010-01-10 01:09:20 +08:00
|
|
|
``second`` database, the existing object in the ``second`` database
|
|
|
|
will be overridden when ``p`` is saved.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
You can avoid this in two ways. First, you can clear the primary key
|
2010-01-22 22:30:06 +08:00
|
|
|
of the instance. If an object has no primary key, Django will treat it
|
|
|
|
as a new object, avoiding any loss of data on the ``second``
|
|
|
|
database::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
>>> p = Person(name='Fred')
|
|
|
|
>>> p.save(using='first')
|
2010-01-10 01:09:20 +08:00
|
|
|
>>> p.pk = None # Clear the primary key.
|
|
|
|
>>> p.save(using='second') # Write a completely new object.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
The second option is to use the ``force_insert`` option to ``save()``
|
|
|
|
to ensure that Django does a SQL ``INSERT``::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
>>> p = Person(name='Fred')
|
|
|
|
>>> p.save(using='first')
|
|
|
|
>>> p.save(using='second', force_insert=True)
|
|
|
|
|
|
|
|
This will ensure that the person named ``Fred`` will have the same
|
|
|
|
primary key on both databases. If that primary key is already in use
|
|
|
|
when you try to save onto the ``second`` database, an error will be
|
|
|
|
raised.
|
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
Selecting a database to delete from
|
2010-01-22 22:30:06 +08:00
|
|
|
-----------------------------------
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
By default, a call to delete an existing object will be executed on
|
|
|
|
the same database that was used to retrieve the object in the first
|
|
|
|
place::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
>>> u = User.objects.using('legacy_users').get(username='fred')
|
|
|
|
>>> u.delete() # will delete from the `legacy_users` database
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
To specify the database from which a model will be deleted, pass a
|
2010-01-22 22:30:06 +08:00
|
|
|
``using`` keyword argument to the ``Model.delete()`` method. This
|
|
|
|
argument works just like the ``using`` keyword argument to ``save()``.
|
2010-01-10 01:09:20 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
For example, if you're migrating a user from the ``legacy_users``
|
|
|
|
database to the ``new_users`` database, you might use these commands::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
>>> user_obj.save(using='new_users')
|
|
|
|
>>> user_obj.delete(using='legacy_users')
|
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
Using managers with multiple databases
|
2010-01-22 22:30:06 +08:00
|
|
|
--------------------------------------
|
2010-01-10 01:09:20 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
Use the ``db_manager()`` method on managers to give managers access to
|
|
|
|
a non-default database.
|
2010-01-10 01:09:20 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
For example, say you have a custom manager method that touches the
|
|
|
|
database -- ``User.objects.create_user()``. Because ``create_user()``
|
|
|
|
is a manager method, not a ``QuerySet`` method, you can't do
|
|
|
|
``User.objects.using('new_users').create_user()``. (The
|
|
|
|
``create_user()`` method is only available on ``User.objects``, the
|
|
|
|
manager, not on ``QuerySet`` objects derived from the manager.) The
|
|
|
|
solution is to use ``db_manager()``, like this::
|
2010-01-10 01:09:20 +08:00
|
|
|
|
|
|
|
User.objects.db_manager('new_users').create_user(...)
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
``db_manager()`` returns a copy of the manager bound to the database you specify.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
Using ``get_query_set()`` with multiple databases
|
2010-01-22 22:30:06 +08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
If you're overriding ``get_query_set()`` on your manager, be sure to
|
|
|
|
either call the method on the parent (using ``super()``) or do the
|
|
|
|
appropriate handling of the ``_db`` attribute on the manager (a string
|
|
|
|
containing the name of the database to use).
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
For example, if you want to return a custom ``QuerySet`` class from
|
|
|
|
the ``get_query_set`` method, you could do this::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
class MyManager(models.Manager):
|
|
|
|
def get_query_set(self):
|
|
|
|
qs = CustomQuerySet(self.model)
|
|
|
|
if self._db is not None:
|
|
|
|
qs = qs.using(self._db)
|
|
|
|
return qs
|
|
|
|
|
|
|
|
Exposing multiple databases in Django's admin interface
|
|
|
|
=======================================================
|
|
|
|
|
|
|
|
Django's admin doesn't have any explicit support for multiple
|
|
|
|
databases. If you want to provide an admin interface for a model on a
|
2011-03-29 18:24:42 +08:00
|
|
|
database other than that specified by your router chain, you'll
|
2010-01-22 22:30:06 +08:00
|
|
|
need to write custom :class:`~django.contrib.admin.ModelAdmin` classes
|
|
|
|
that will direct the admin to use a specific database for content.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-11-22 03:00:40 +08:00
|
|
|
``ModelAdmin`` objects have five methods that require customization for
|
2010-01-10 01:09:20 +08:00
|
|
|
multiple-database support::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
class MultiDBModelAdmin(admin.ModelAdmin):
|
2010-01-10 01:09:20 +08:00
|
|
|
# A handy constant for the name of the alternate database.
|
2009-12-22 23:18:51 +08:00
|
|
|
using = 'other'
|
|
|
|
|
|
|
|
def save_model(self, request, obj, form, change):
|
2010-01-10 01:09:20 +08:00
|
|
|
# Tell Django to save objects to the 'other' database.
|
2009-12-22 23:18:51 +08:00
|
|
|
obj.save(using=self.using)
|
|
|
|
|
2011-03-03 08:24:41 +08:00
|
|
|
def delete_model(self, request, obj):
|
2010-11-22 03:00:40 +08:00
|
|
|
# Tell Django to delete objects from the 'other' database
|
|
|
|
obj.delete(using=self.using)
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
def queryset(self, request):
|
2010-01-10 01:09:20 +08:00
|
|
|
# Tell Django to look for objects on the 'other' database.
|
2009-12-22 23:18:51 +08:00
|
|
|
return super(MultiDBModelAdmin, self).queryset(request).using(self.using)
|
|
|
|
|
|
|
|
def formfield_for_foreignkey(self, db_field, request=None, **kwargs):
|
|
|
|
# Tell Django to populate ForeignKey widgets using a query
|
2010-01-10 01:09:20 +08:00
|
|
|
# on the 'other' database.
|
2009-12-22 23:18:51 +08:00
|
|
|
return super(MultiDBModelAdmin, self).formfield_for_foreignkey(db_field, request=request, using=self.using, **kwargs)
|
|
|
|
|
|
|
|
def formfield_for_manytomany(self, db_field, request=None, **kwargs):
|
|
|
|
# Tell Django to populate ManyToMany widgets using a query
|
2010-01-10 01:09:20 +08:00
|
|
|
# on the 'other' database.
|
2009-12-22 23:18:51 +08:00
|
|
|
return super(MultiDBModelAdmin, self).formfield_for_manytomany(db_field, request=request, using=self.using, **kwargs)
|
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
The implementation provided here implements a multi-database strategy
|
|
|
|
where all objects of a given type are stored on a specific database
|
|
|
|
(e.g., all ``User`` objects are in the ``other`` database). If your
|
|
|
|
usage of multiple databases is more complex, your ``ModelAdmin`` will
|
|
|
|
need to reflect that strategy.
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
Inlines can be handled in a similar fashion. They require three customized methods::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
class MultiDBTabularInline(admin.TabularInline):
|
|
|
|
using = 'other'
|
|
|
|
|
|
|
|
def queryset(self, request):
|
2010-01-10 01:09:20 +08:00
|
|
|
# Tell Django to look for inline objects on the 'other' database.
|
2009-12-22 23:18:51 +08:00
|
|
|
return super(MultiDBTabularInline, self).queryset(request).using(self.using)
|
|
|
|
|
|
|
|
def formfield_for_foreignkey(self, db_field, request=None, **kwargs):
|
|
|
|
# Tell Django to populate ForeignKey widgets using a query
|
2010-01-10 01:09:20 +08:00
|
|
|
# on the 'other' database.
|
2009-12-22 23:18:51 +08:00
|
|
|
return super(MultiDBTabularInline, self).formfield_for_foreignkey(db_field, request=request, using=self.using, **kwargs)
|
|
|
|
|
|
|
|
def formfield_for_manytomany(self, db_field, request=None, **kwargs):
|
|
|
|
# Tell Django to populate ManyToMany widgets using a query
|
2010-01-10 01:09:20 +08:00
|
|
|
# on the 'other' database.
|
2009-12-22 23:18:51 +08:00
|
|
|
return super(MultiDBTabularInline, self).formfield_for_manytomany(db_field, request=request, using=self.using, **kwargs)
|
|
|
|
|
2010-01-22 22:30:06 +08:00
|
|
|
Once you've written your model admin definitions, they can be
|
|
|
|
registered with any ``Admin`` instance::
|
2009-12-22 23:18:51 +08:00
|
|
|
|
|
|
|
from django.contrib import admin
|
|
|
|
|
2010-01-10 01:09:20 +08:00
|
|
|
# Specialize the multi-db admin objects for use with specific models.
|
2009-12-22 23:18:51 +08:00
|
|
|
class BookInline(MultiDBTabularInline):
|
|
|
|
model = Book
|
|
|
|
|
|
|
|
class PublisherAdmin(MultiDBModelAdmin):
|
|
|
|
inlines = [BookInline]
|
|
|
|
|
|
|
|
admin.site.register(Author, MultiDBModelAdmin)
|
|
|
|
admin.site.register(Publisher, PublisherAdmin)
|
|
|
|
|
2012-08-30 18:45:11 +08:00
|
|
|
othersite = admin.AdminSite('othersite')
|
2009-12-22 23:18:51 +08:00
|
|
|
othersite.register(Publisher, MultiDBModelAdmin)
|
|
|
|
|
|
|
|
This example sets up two admin sites. On the first site, the
|
|
|
|
``Author`` and ``Publisher`` objects are exposed; ``Publisher``
|
|
|
|
objects have an tabular inline showing books published by that
|
|
|
|
publisher. The second site exposes just publishers, without the
|
|
|
|
inlines.
|
2010-03-08 11:19:26 +08:00
|
|
|
|
|
|
|
Using raw cursors with multiple databases
|
|
|
|
=========================================
|
|
|
|
|
|
|
|
If you are using more than one database you can use
|
|
|
|
``django.db.connections`` to obtain the connection (and cursor) for a
|
|
|
|
specific database. ``django.db.connections`` is a dictionary-like
|
2010-12-17 06:37:29 +08:00
|
|
|
object that allows you to retrieve a specific connection using its
|
2010-03-08 11:19:26 +08:00
|
|
|
alias::
|
|
|
|
|
|
|
|
from django.db import connections
|
|
|
|
cursor = connections['my_db_alias'].cursor()
|
2010-05-09 15:44:06 +08:00
|
|
|
|
|
|
|
Limitations of multiple databases
|
|
|
|
=================================
|
|
|
|
|
|
|
|
.. _no_cross_database_relations:
|
|
|
|
|
|
|
|
Cross-database relations
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Django doesn't currently provide any support for foreign key or
|
|
|
|
many-to-many relationships spanning multiple databases. If you
|
|
|
|
have used a router to partition models to different databases,
|
|
|
|
any foreign key and many-to-many relationships defined by those
|
|
|
|
models must be internal to a single database.
|
|
|
|
|
|
|
|
This is because of referential integrity. In order to maintain a
|
|
|
|
relationship between two objects, Django needs to know that the
|
|
|
|
primary key of the related object is valid. If the primary key is
|
|
|
|
stored on a separate database, it's not possible to easily evaluate
|
|
|
|
the validity of a primary key.
|
|
|
|
|
|
|
|
If you're using Postgres, Oracle, or MySQL with InnoDB, this is
|
|
|
|
enforced at the database integrity level -- database level key
|
|
|
|
constraints prevent the creation of relations that can't be validated.
|
|
|
|
|
|
|
|
However, if you're using SQLite or MySQL with MyISAM tables, there is
|
|
|
|
no enforced referential integrity; as a result, you may be able to
|
|
|
|
'fake' cross database foreign keys. However, this configuration is not
|
|
|
|
officially supported by Django.
|