multi-db.txt 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753
  1. ==================
  2. Multiple databases
  3. ==================
  4. This topic guide describes Django's support for interacting with
  5. multiple databases. Most of the rest of Django's documentation assumes
  6. you are interacting with a single database. If you want to interact
  7. with multiple databases, you'll need to take some additional steps.
  8. .. seealso::
  9. See :ref:`testing-multi-db` for information about testing with multiple
  10. databases.
  11. Defining your databases
  12. =======================
  13. The first step to using more than one database with Django is to tell
  14. Django about the database servers you'll be using. This is done using
  15. the :setting:`DATABASES` setting. This setting maps database aliases,
  16. which are a way to refer to a specific database throughout Django, to
  17. a dictionary of settings for that specific connection. The settings in
  18. the inner dictionaries are described fully in the :setting:`DATABASES`
  19. documentation.
  20. Databases can have any alias you choose. However, the alias
  21. ``default`` has special significance. Django uses the database with
  22. the alias of ``default`` when no other database has been selected.
  23. The following is an example ``settings.py`` snippet defining two
  24. databases -- a default PostgreSQL database and a MySQL database called
  25. ``users``::
  26. DATABASES = {
  27. 'default': {
  28. 'NAME': 'app_data',
  29. 'ENGINE': 'django.db.backends.postgresql',
  30. 'USER': 'postgres_user',
  31. 'PASSWORD': 's3krit'
  32. },
  33. 'users': {
  34. 'NAME': 'user_data',
  35. 'ENGINE': 'django.db.backends.mysql',
  36. 'USER': 'mysql_user',
  37. 'PASSWORD': 'priv4te'
  38. }
  39. }
  40. If the concept of a ``default`` database doesn't make sense in the context
  41. of your project, you need to be careful to always specify the database
  42. that you want to use. Django requires that a ``default`` database entry
  43. be defined, but the parameters dictionary can be left blank if it will not be
  44. used. To do this, you must set up :setting:`DATABASE_ROUTERS` for all of your
  45. apps' models, including those in any contrib and third-party apps you're using,
  46. so that no queries are routed to the default database. The following is an
  47. example ``settings.py`` snippet defining two non-default databases, with the
  48. ``default`` entry intentionally left empty::
  49. DATABASES = {
  50. 'default': {},
  51. 'users': {
  52. 'NAME': 'user_data',
  53. 'ENGINE': 'django.db.backends.mysql',
  54. 'USER': 'mysql_user',
  55. 'PASSWORD': 'superS3cret'
  56. },
  57. 'customers': {
  58. 'NAME': 'customer_data',
  59. 'ENGINE': 'django.db.backends.mysql',
  60. 'USER': 'mysql_cust',
  61. 'PASSWORD': 'veryPriv@ate'
  62. }
  63. }
  64. If you attempt to access a database that you haven't defined in your
  65. :setting:`DATABASES` setting, Django will raise a
  66. ``django.db.utils.ConnectionDoesNotExist`` exception.
  67. Synchronizing your databases
  68. ============================
  69. The :djadmin:`migrate` management command operates on one database at a
  70. time. By default, it operates on the ``default`` database, but by
  71. providing the :option:`--database <migrate --database>` option, you can tell it
  72. to synchronize a different database. So, to synchronize all models onto
  73. all databases in the first example above, you would need to call::
  74. $ ./manage.py migrate
  75. $ ./manage.py migrate --database=users
  76. If you don't want every application to be synchronized onto a
  77. particular database, you can define a :ref:`database
  78. router<topics-db-multi-db-routing>` that implements a policy
  79. constraining the availability of particular models.
  80. If, as in the second example above, you've left the ``default`` database empty,
  81. you must provide a database name each time you run :djadmin:`migrate`. Omitting
  82. the database name would raise an error. For the second example::
  83. $ ./manage.py migrate --database=users
  84. $ ./manage.py migrate --database=customers
  85. Using other management commands
  86. -------------------------------
  87. Most other ``django-admin`` commands that interact with the database operate in
  88. the same way as :djadmin:`migrate` -- they only ever operate on one database at
  89. a time, using ``--database`` to control the database used.
  90. An exception to this rule is the :djadmin:`makemigrations` command. It
  91. validates the migration history in the databases to catch problems with the
  92. existing migration files (which could be caused by editing them) before
  93. creating new migrations. By default, it checks only the ``default`` database,
  94. but it consults the :meth:`allow_migrate` method of :ref:`routers
  95. <topics-db-multi-db-routing>` if any are installed.
  96. .. _topics-db-multi-db-routing:
  97. Automatic database routing
  98. ==========================
  99. The easiest way to use multiple databases is to set up a database
  100. routing scheme. The default routing scheme ensures that objects remain
  101. 'sticky' to their original database (i.e., an object retrieved from
  102. the ``foo`` database will be saved on the same database). The default
  103. routing scheme ensures that if a database isn't specified, all queries
  104. fall back to the ``default`` database.
  105. You don't have to do anything to activate the default routing scheme
  106. -- it is provided 'out of the box' on every Django project. However,
  107. if you want to implement more interesting database allocation
  108. behaviors, you can define and install your own database routers.
  109. Database routers
  110. ----------------
  111. A database Router is a class that provides up to four methods:
  112. .. method:: db_for_read(model, **hints)
  113. Suggest the database that should be used for read operations for
  114. objects of type ``model``.
  115. If a database operation is able to provide any additional
  116. information that might assist in selecting a database, it will be
  117. provided in the ``hints`` dictionary. Details on valid hints are
  118. provided :ref:`below <topics-db-multi-db-hints>`.
  119. Returns ``None`` if there is no suggestion.
  120. .. method:: db_for_write(model, **hints)
  121. Suggest the database that should be used for writes of objects of
  122. type Model.
  123. If a database operation is able to provide any additional
  124. information that might assist in selecting a database, it will be
  125. provided in the ``hints`` dictionary. Details on valid hints are
  126. provided :ref:`below <topics-db-multi-db-hints>`.
  127. Returns ``None`` if there is no suggestion.
  128. .. method:: allow_relation(obj1, obj2, **hints)
  129. Return ``True`` if a relation between ``obj1`` and ``obj2`` should be
  130. allowed, ``False`` if the relation should be prevented, or ``None`` if
  131. the router has no opinion. This is purely a validation operation,
  132. used by foreign key and many to many operations to determine if a
  133. relation should be allowed between two objects.
  134. If no router has an opinion (i.e. all routers return ``None``), only
  135. relations within the same database are allowed.
  136. .. method:: allow_migrate(db, app_label, model_name=None, **hints)
  137. Determine if the migration operation is allowed to run on the database with
  138. alias ``db``. Return ``True`` if the operation should run, ``False`` if it
  139. shouldn't run, or ``None`` if the router has no opinion.
  140. The ``app_label`` positional argument is the label of the application
  141. being migrated.
  142. ``model_name`` is set by most migration operations to the value of
  143. ``model._meta.model_name`` (the lowercased version of the model
  144. ``__name__``) of the model being migrated. Its value is ``None`` for the
  145. :class:`~django.db.migrations.operations.RunPython` and
  146. :class:`~django.db.migrations.operations.RunSQL` operations unless they
  147. provide it using hints.
  148. ``hints`` are used by certain operations to communicate additional
  149. information to the router.
  150. When ``model_name`` is set, ``hints`` normally contains the model class
  151. under the key ``'model'``. Note that it may be a :ref:`historical model
  152. <historical-models>`, and thus not have any custom attributes, methods, or
  153. managers. You should only rely on ``_meta``.
  154. This method can also be used to determine the availability of a model on a
  155. given database.
  156. :djadmin:`makemigrations` always creates migrations for model changes, but
  157. if ``allow_migrate()`` returns ``False``, any migration operations for the
  158. ``model_name`` will be silently skipped when running :djadmin:`migrate` on
  159. the ``db``. Changing the behavior of ``allow_migrate()`` for models that
  160. already have migrations may result in broken foreign keys, extra tables,
  161. or missing tables. When :djadmin:`makemigrations` verifies the migration
  162. history, it skips databases where no app is allowed to migrate.
  163. A router doesn't have to provide *all* these methods -- it may omit one
  164. or more of them. If one of the methods is omitted, Django will skip
  165. that router when performing the relevant check.
  166. .. _topics-db-multi-db-hints:
  167. Hints
  168. ~~~~~
  169. The hints received by the database router can be used to decide which
  170. database should receive a given request.
  171. At present, the only hint that will be provided is ``instance``, an
  172. object instance that is related to the read or write operation that is
  173. underway. This might be the instance that is being saved, or it might
  174. be an instance that is being added in a many-to-many relation. In some
  175. cases, no instance hint will be provided at all. The router checks for
  176. the existence of an instance hint, and determine if that hint should be
  177. used to alter routing behavior.
  178. Using routers
  179. -------------
  180. Database routers are installed using the :setting:`DATABASE_ROUTERS`
  181. setting. This setting defines a list of class names, each specifying a
  182. router that should be used by the master router
  183. (``django.db.router``).
  184. The master router is used by Django's database operations to allocate
  185. database usage. Whenever a query needs to know which database to use,
  186. it calls the master router, providing a model and a hint (if
  187. available). Django then tries each router in turn until a database
  188. suggestion can be found. If no suggestion can be found, it tries the
  189. current ``_state.db`` of the hint instance. If a hint instance wasn't
  190. provided, or the instance doesn't currently have database state, the
  191. master router will allocate the ``default`` database.
  192. An example
  193. ----------
  194. .. admonition:: Example purposes only!
  195. This example is intended as a demonstration of how the router
  196. infrastructure can be used to alter database usage. It
  197. intentionally ignores some complex issues in order to
  198. demonstrate how routers are used.
  199. This example won't work if any of the models in ``myapp`` contain
  200. relationships to models outside of the ``other`` database.
  201. :ref:`Cross-database relationships <no_cross_database_relations>`
  202. introduce referential integrity problems that Django can't
  203. currently handle.
  204. The primary/replica (referred to as master/slave by some databases)
  205. configuration described is also flawed -- it
  206. doesn't provide any solution for handling replication lag (i.e.,
  207. query inconsistencies introduced because of the time taken for a
  208. write to propagate to the replicas). It also doesn't consider the
  209. interaction of transactions with the database utilization strategy.
  210. So - what does this mean in practice? Let's consider another sample
  211. configuration. This one will have several databases: one for the
  212. ``auth`` application, and all other apps using a primary/replica setup
  213. with two read replicas. Here are the settings specifying these
  214. databases::
  215. DATABASES = {
  216. 'default': {},
  217. 'auth_db': {
  218. 'NAME': 'auth_db',
  219. 'ENGINE': 'django.db.backends.mysql',
  220. 'USER': 'mysql_user',
  221. 'PASSWORD': 'swordfish',
  222. },
  223. 'primary': {
  224. 'NAME': 'primary',
  225. 'ENGINE': 'django.db.backends.mysql',
  226. 'USER': 'mysql_user',
  227. 'PASSWORD': 'spam',
  228. },
  229. 'replica1': {
  230. 'NAME': 'replica1',
  231. 'ENGINE': 'django.db.backends.mysql',
  232. 'USER': 'mysql_user',
  233. 'PASSWORD': 'eggs',
  234. },
  235. 'replica2': {
  236. 'NAME': 'replica2',
  237. 'ENGINE': 'django.db.backends.mysql',
  238. 'USER': 'mysql_user',
  239. 'PASSWORD': 'bacon',
  240. },
  241. }
  242. Now we'll need to handle routing. First we want a router that knows to
  243. send queries for the ``auth`` and ``contenttypes`` apps to ``auth_db``
  244. (``auth`` models are linked to ``ContentType``, so they must be stored in the
  245. same database)::
  246. class AuthRouter:
  247. """
  248. A router to control all database operations on models in the
  249. auth and contenttypes applications.
  250. """
  251. route_app_labels = {'auth', 'contenttypes'}
  252. def db_for_read(self, model, **hints):
  253. """
  254. Attempts to read auth and contenttypes models go to auth_db.
  255. """
  256. if model._meta.app_label in self.route_app_labels:
  257. return 'auth_db'
  258. return None
  259. def db_for_write(self, model, **hints):
  260. """
  261. Attempts to write auth and contenttypes models go to auth_db.
  262. """
  263. if model._meta.app_label in self.route_app_labels:
  264. return 'auth_db'
  265. return None
  266. def allow_relation(self, obj1, obj2, **hints):
  267. """
  268. Allow relations if a model in the auth or contenttypes apps is
  269. involved.
  270. """
  271. if (
  272. obj1._meta.app_label in self.route_app_labels or
  273. obj2._meta.app_label in self.route_app_labels
  274. ):
  275. return True
  276. return None
  277. def allow_migrate(self, db, app_label, model_name=None, **hints):
  278. """
  279. Make sure the auth and contenttypes apps only appear in the
  280. 'auth_db' database.
  281. """
  282. if app_label in self.route_app_labels:
  283. return db == 'auth_db'
  284. return None
  285. And we also want a router that sends all other apps to the
  286. primary/replica configuration, and randomly chooses a replica to read
  287. from::
  288. import random
  289. class PrimaryReplicaRouter:
  290. def db_for_read(self, model, **hints):
  291. """
  292. Reads go to a randomly-chosen replica.
  293. """
  294. return random.choice(['replica1', 'replica2'])
  295. def db_for_write(self, model, **hints):
  296. """
  297. Writes always go to primary.
  298. """
  299. return 'primary'
  300. def allow_relation(self, obj1, obj2, **hints):
  301. """
  302. Relations between objects are allowed if both objects are
  303. in the primary/replica pool.
  304. """
  305. db_set = {'primary', 'replica1', 'replica2'}
  306. if obj1._state.db in db_set and obj2._state.db in db_set:
  307. return True
  308. return None
  309. def allow_migrate(self, db, app_label, model_name=None, **hints):
  310. """
  311. All non-auth models end up in this pool.
  312. """
  313. return True
  314. Finally, in the settings file, we add the following (substituting
  315. ``path.to.`` with the actual Python path to the module(s) where the
  316. routers are defined)::
  317. DATABASE_ROUTERS = ['path.to.AuthRouter', 'path.to.PrimaryReplicaRouter']
  318. The order in which routers are processed is significant. Routers will
  319. be queried in the order they are listed in the
  320. :setting:`DATABASE_ROUTERS` setting. In this example, the
  321. ``AuthRouter`` is processed before the ``PrimaryReplicaRouter``, and as a
  322. result, decisions concerning the models in ``auth`` are processed
  323. before any other decision is made. If the :setting:`DATABASE_ROUTERS`
  324. setting listed the two routers in the other order,
  325. ``PrimaryReplicaRouter.allow_migrate()`` would be processed first. The
  326. catch-all nature of the PrimaryReplicaRouter implementation would mean
  327. that all models would be available on all databases.
  328. With this setup installed, lets run some Django code::
  329. >>> # This retrieval will be performed on the 'auth_db' database
  330. >>> fred = User.objects.get(username='fred')
  331. >>> fred.first_name = 'Frederick'
  332. >>> # This save will also be directed to 'auth_db'
  333. >>> fred.save()
  334. >>> # These retrieval will be randomly allocated to a replica database
  335. >>> dna = Person.objects.get(name='Douglas Adams')
  336. >>> # A new object has no database allocation when created
  337. >>> mh = Book(title='Mostly Harmless')
  338. >>> # This assignment will consult the router, and set mh onto
  339. >>> # the same database as the author object
  340. >>> mh.author = dna
  341. >>> # This save will force the 'mh' instance onto the primary database...
  342. >>> mh.save()
  343. >>> # ... but if we re-retrieve the object, it will come back on a replica
  344. >>> mh = Book.objects.get(title='Mostly Harmless')
  345. This example defined a router to handle interaction with models from the
  346. ``auth`` app, and other routers to handle interaction with all other apps. If
  347. you left your ``default`` database empty and don't want to define a catch-all
  348. database router to handle all apps not otherwise specified, your routers must
  349. handle the names of all apps in :setting:`INSTALLED_APPS` before you migrate.
  350. See :ref:`contrib_app_multiple_databases` for information about contrib apps
  351. that must be together in one database.
  352. Manually selecting a database
  353. =============================
  354. Django also provides an API that allows you to maintain complete control
  355. over database usage in your code. A manually specified database allocation
  356. will take priority over a database allocated by a router.
  357. Manually selecting a database for a ``QuerySet``
  358. ------------------------------------------------
  359. You can select the database for a ``QuerySet`` at any point in the
  360. ``QuerySet`` "chain." Call ``using()`` on the ``QuerySet`` to get another
  361. ``QuerySet`` that uses the specified database.
  362. ``using()`` takes a single argument: the alias of the database on
  363. which you want to run the query. For example::
  364. >>> # This will run on the 'default' database.
  365. >>> Author.objects.all()
  366. >>> # So will this.
  367. >>> Author.objects.using('default').all()
  368. >>> # This will run on the 'other' database.
  369. >>> Author.objects.using('other').all()
  370. Selecting a database for ``save()``
  371. -----------------------------------
  372. Use the ``using`` keyword to ``Model.save()`` to specify to which
  373. database the data should be saved.
  374. For example, to save an object to the ``legacy_users`` database, you'd
  375. use this::
  376. >>> my_object.save(using='legacy_users')
  377. If you don't specify ``using``, the ``save()`` method will save into
  378. the default database allocated by the routers.
  379. Moving an object from one database to another
  380. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  381. If you've saved an instance to one database, it might be tempting to
  382. use ``save(using=...)`` as a way to migrate the instance to a new
  383. database. However, if you don't take appropriate steps, this could
  384. have some unexpected consequences.
  385. Consider the following example::
  386. >>> p = Person(name='Fred')
  387. >>> p.save(using='first') # (statement 1)
  388. >>> p.save(using='second') # (statement 2)
  389. In statement 1, a new ``Person`` object is saved to the ``first``
  390. database. At this time, ``p`` doesn't have a primary key, so Django
  391. issues an SQL ``INSERT`` statement. This creates a primary key, and
  392. Django assigns that primary key to ``p``.
  393. When the save occurs in statement 2, ``p`` already has a primary key
  394. value, and Django will attempt to use that primary key on the new
  395. database. If the primary key value isn't in use in the ``second``
  396. database, then you won't have any problems -- the object will be
  397. copied to the new database.
  398. However, if the primary key of ``p`` is already in use on the
  399. ``second`` database, the existing object in the ``second`` database
  400. will be overridden when ``p`` is saved.
  401. You can avoid this in two ways. First, you can clear the primary key
  402. of the instance. If an object has no primary key, Django will treat it
  403. as a new object, avoiding any loss of data on the ``second``
  404. database::
  405. >>> p = Person(name='Fred')
  406. >>> p.save(using='first')
  407. >>> p.pk = None # Clear the primary key.
  408. >>> p.save(using='second') # Write a completely new object.
  409. The second option is to use the ``force_insert`` option to ``save()``
  410. to ensure that Django does an SQL ``INSERT``::
  411. >>> p = Person(name='Fred')
  412. >>> p.save(using='first')
  413. >>> p.save(using='second', force_insert=True)
  414. This will ensure that the person named ``Fred`` will have the same
  415. primary key on both databases. If that primary key is already in use
  416. when you try to save onto the ``second`` database, an error will be
  417. raised.
  418. Selecting a database to delete from
  419. -----------------------------------
  420. By default, a call to delete an existing object will be executed on
  421. the same database that was used to retrieve the object in the first
  422. place::
  423. >>> u = User.objects.using('legacy_users').get(username='fred')
  424. >>> u.delete() # will delete from the `legacy_users` database
  425. To specify the database from which a model will be deleted, pass a
  426. ``using`` keyword argument to the ``Model.delete()`` method. This
  427. argument works just like the ``using`` keyword argument to ``save()``.
  428. For example, if you're migrating a user from the ``legacy_users``
  429. database to the ``new_users`` database, you might use these commands::
  430. >>> user_obj.save(using='new_users')
  431. >>> user_obj.delete(using='legacy_users')
  432. Using managers with multiple databases
  433. --------------------------------------
  434. Use the ``db_manager()`` method on managers to give managers access to
  435. a non-default database.
  436. For example, say you have a custom manager method that touches the
  437. database -- ``User.objects.create_user()``. Because ``create_user()``
  438. is a manager method, not a ``QuerySet`` method, you can't do
  439. ``User.objects.using('new_users').create_user()``. (The
  440. ``create_user()`` method is only available on ``User.objects``, the
  441. manager, not on ``QuerySet`` objects derived from the manager.) The
  442. solution is to use ``db_manager()``, like this::
  443. User.objects.db_manager('new_users').create_user(...)
  444. ``db_manager()`` returns a copy of the manager bound to the database you specify.
  445. Using ``get_queryset()`` with multiple databases
  446. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  447. If you're overriding ``get_queryset()`` on your manager, be sure to
  448. either call the method on the parent (using ``super()``) or do the
  449. appropriate handling of the ``_db`` attribute on the manager (a string
  450. containing the name of the database to use).
  451. For example, if you want to return a custom ``QuerySet`` class from
  452. the ``get_queryset`` method, you could do this::
  453. class MyManager(models.Manager):
  454. def get_queryset(self):
  455. qs = CustomQuerySet(self.model)
  456. if self._db is not None:
  457. qs = qs.using(self._db)
  458. return qs
  459. Exposing multiple databases in Django's admin interface
  460. =======================================================
  461. Django's admin doesn't have any explicit support for multiple
  462. databases. If you want to provide an admin interface for a model on a
  463. database other than that specified by your router chain, you'll
  464. need to write custom :class:`~django.contrib.admin.ModelAdmin` classes
  465. that will direct the admin to use a specific database for content.
  466. ``ModelAdmin`` objects have five methods that require customization for
  467. multiple-database support::
  468. class MultiDBModelAdmin(admin.ModelAdmin):
  469. # A handy constant for the name of the alternate database.
  470. using = 'other'
  471. def save_model(self, request, obj, form, change):
  472. # Tell Django to save objects to the 'other' database.
  473. obj.save(using=self.using)
  474. def delete_model(self, request, obj):
  475. # Tell Django to delete objects from the 'other' database
  476. obj.delete(using=self.using)
  477. def get_queryset(self, request):
  478. # Tell Django to look for objects on the 'other' database.
  479. return super().get_queryset(request).using(self.using)
  480. def formfield_for_foreignkey(self, db_field, request, **kwargs):
  481. # Tell Django to populate ForeignKey widgets using a query
  482. # on the 'other' database.
  483. return super().formfield_for_foreignkey(db_field, request, using=self.using, **kwargs)
  484. def formfield_for_manytomany(self, db_field, request, **kwargs):
  485. # Tell Django to populate ManyToMany widgets using a query
  486. # on the 'other' database.
  487. return super().formfield_for_manytomany(db_field, request, using=self.using, **kwargs)
  488. The implementation provided here implements a multi-database strategy
  489. where all objects of a given type are stored on a specific database
  490. (e.g., all ``User`` objects are in the ``other`` database). If your
  491. usage of multiple databases is more complex, your ``ModelAdmin`` will
  492. need to reflect that strategy.
  493. :class:`~django.contrib.admin.InlineModelAdmin` objects can be handled in a
  494. similar fashion. They require three customized methods::
  495. class MultiDBTabularInline(admin.TabularInline):
  496. using = 'other'
  497. def get_queryset(self, request):
  498. # Tell Django to look for inline objects on the 'other' database.
  499. return super().get_queryset(request).using(self.using)
  500. def formfield_for_foreignkey(self, db_field, request, **kwargs):
  501. # Tell Django to populate ForeignKey widgets using a query
  502. # on the 'other' database.
  503. return super().formfield_for_foreignkey(db_field, request, using=self.using, **kwargs)
  504. def formfield_for_manytomany(self, db_field, request, **kwargs):
  505. # Tell Django to populate ManyToMany widgets using a query
  506. # on the 'other' database.
  507. return super().formfield_for_manytomany(db_field, request, using=self.using, **kwargs)
  508. Once you've written your model admin definitions, they can be
  509. registered with any ``Admin`` instance::
  510. from django.contrib import admin
  511. # Specialize the multi-db admin objects for use with specific models.
  512. class BookInline(MultiDBTabularInline):
  513. model = Book
  514. class PublisherAdmin(MultiDBModelAdmin):
  515. inlines = [BookInline]
  516. admin.site.register(Author, MultiDBModelAdmin)
  517. admin.site.register(Publisher, PublisherAdmin)
  518. othersite = admin.AdminSite('othersite')
  519. othersite.register(Publisher, MultiDBModelAdmin)
  520. This example sets up two admin sites. On the first site, the
  521. ``Author`` and ``Publisher`` objects are exposed; ``Publisher``
  522. objects have a tabular inline showing books published by that
  523. publisher. The second site exposes just publishers, without the
  524. inlines.
  525. Using raw cursors with multiple databases
  526. =========================================
  527. If you are using more than one database you can use
  528. ``django.db.connections`` to obtain the connection (and cursor) for a
  529. specific database. ``django.db.connections`` is a dictionary-like
  530. object that allows you to retrieve a specific connection using its
  531. alias::
  532. from django.db import connections
  533. with connections['my_db_alias'].cursor() as cursor:
  534. ...
  535. Limitations of multiple databases
  536. =================================
  537. .. _no_cross_database_relations:
  538. Cross-database relations
  539. ------------------------
  540. Django doesn't currently provide any support for foreign key or
  541. many-to-many relationships spanning multiple databases. If you
  542. have used a router to partition models to different databases,
  543. any foreign key and many-to-many relationships defined by those
  544. models must be internal to a single database.
  545. This is because of referential integrity. In order to maintain a
  546. relationship between two objects, Django needs to know that the
  547. primary key of the related object is valid. If the primary key is
  548. stored on a separate database, it's not possible to easily evaluate
  549. the validity of a primary key.
  550. If you're using Postgres, Oracle, or MySQL with InnoDB, this is
  551. enforced at the database integrity level -- database level key
  552. constraints prevent the creation of relations that can't be validated.
  553. However, if you're using SQLite or MySQL with MyISAM tables, there is
  554. no enforced referential integrity; as a result, you may be able to
  555. 'fake' cross database foreign keys. However, this configuration is not
  556. officially supported by Django.
  557. .. _contrib_app_multiple_databases:
  558. Behavior of contrib apps
  559. ------------------------
  560. Several contrib apps include models, and some apps depend on others. Since
  561. cross-database relationships are impossible, this creates some restrictions on
  562. how you can split these models across databases:
  563. - each one of ``contenttypes.ContentType``, ``sessions.Session`` and
  564. ``sites.Site`` can be stored in any database, given a suitable router.
  565. - ``auth`` models — ``User``, ``Group`` and ``Permission`` — are linked
  566. together and linked to ``ContentType``, so they must be stored in the same
  567. database as ``ContentType``.
  568. - ``admin`` depends on ``auth``, so its models must be in the same database
  569. as ``auth``.
  570. - ``flatpages`` and ``redirects`` depend on ``sites``, so their models must be
  571. in the same database as ``sites``.
  572. In addition, some objects are automatically created just after
  573. :djadmin:`migrate` creates a table to hold them in a database:
  574. - a default ``Site``,
  575. - a ``ContentType`` for each model (including those not stored in that
  576. database),
  577. - the ``Permission``\s for each model (including those not stored in that
  578. database).
  579. For common setups with multiple databases, it isn't useful to have these
  580. objects in more than one database. Common setups include primary/replica and
  581. connecting to external databases. Therefore, it's recommended to write a
  582. :ref:`database router<topics-db-multi-db-routing>` that allows synchronizing
  583. these three models to only one database. Use the same approach for contrib
  584. and third-party apps that don't need their tables in multiple databases.
  585. .. warning::
  586. If you're synchronizing content types to more than one database, be aware
  587. that their primary keys may not match across databases. This may result in
  588. data corruption or data loss.