multi-db.txt 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  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`` app to ``auth_db``::
  244. class AuthRouter:
  245. """
  246. A router to control all database operations on models in the
  247. auth application.
  248. """
  249. def db_for_read(self, model, **hints):
  250. """
  251. Attempts to read auth models go to auth_db.
  252. """
  253. if model._meta.app_label == 'auth':
  254. return 'auth_db'
  255. return None
  256. def db_for_write(self, model, **hints):
  257. """
  258. Attempts to write auth models go to auth_db.
  259. """
  260. if model._meta.app_label == 'auth':
  261. return 'auth_db'
  262. return None
  263. def allow_relation(self, obj1, obj2, **hints):
  264. """
  265. Allow relations if a model in the auth app is involved.
  266. """
  267. if obj1._meta.app_label == 'auth' or \
  268. obj2._meta.app_label == 'auth':
  269. return True
  270. return None
  271. def allow_migrate(self, db, app_label, model_name=None, **hints):
  272. """
  273. Make sure the auth app only appears in the 'auth_db'
  274. database.
  275. """
  276. if app_label == 'auth':
  277. return db == 'auth_db'
  278. return None
  279. And we also want a router that sends all other apps to the
  280. primary/replica configuration, and randomly chooses a replica to read
  281. from::
  282. import random
  283. class PrimaryReplicaRouter:
  284. def db_for_read(self, model, **hints):
  285. """
  286. Reads go to a randomly-chosen replica.
  287. """
  288. return random.choice(['replica1', 'replica2'])
  289. def db_for_write(self, model, **hints):
  290. """
  291. Writes always go to primary.
  292. """
  293. return 'primary'
  294. def allow_relation(self, obj1, obj2, **hints):
  295. """
  296. Relations between objects are allowed if both objects are
  297. in the primary/replica pool.
  298. """
  299. db_list = ('primary', 'replica1', 'replica2')
  300. if obj1._state.db in db_list and obj2._state.db in db_list:
  301. return True
  302. return None
  303. def allow_migrate(self, db, app_label, model_name=None, **hints):
  304. """
  305. All non-auth models end up in this pool.
  306. """
  307. return True
  308. Finally, in the settings file, we add the following (substituting
  309. ``path.to.`` with the actual Python path to the module(s) where the
  310. routers are defined)::
  311. DATABASE_ROUTERS = ['path.to.AuthRouter', 'path.to.PrimaryReplicaRouter']
  312. The order in which routers are processed is significant. Routers will
  313. be queried in the order they are listed in the
  314. :setting:`DATABASE_ROUTERS` setting. In this example, the
  315. ``AuthRouter`` is processed before the ``PrimaryReplicaRouter``, and as a
  316. result, decisions concerning the models in ``auth`` are processed
  317. before any other decision is made. If the :setting:`DATABASE_ROUTERS`
  318. setting listed the two routers in the other order,
  319. ``PrimaryReplicaRouter.allow_migrate()`` would be processed first. The
  320. catch-all nature of the PrimaryReplicaRouter implementation would mean
  321. that all models would be available on all databases.
  322. With this setup installed, lets run some Django code::
  323. >>> # This retrieval will be performed on the 'auth_db' database
  324. >>> fred = User.objects.get(username='fred')
  325. >>> fred.first_name = 'Frederick'
  326. >>> # This save will also be directed to 'auth_db'
  327. >>> fred.save()
  328. >>> # These retrieval will be randomly allocated to a replica database
  329. >>> dna = Person.objects.get(name='Douglas Adams')
  330. >>> # A new object has no database allocation when created
  331. >>> mh = Book(title='Mostly Harmless')
  332. >>> # This assignment will consult the router, and set mh onto
  333. >>> # the same database as the author object
  334. >>> mh.author = dna
  335. >>> # This save will force the 'mh' instance onto the primary database...
  336. >>> mh.save()
  337. >>> # ... but if we re-retrieve the object, it will come back on a replica
  338. >>> mh = Book.objects.get(title='Mostly Harmless')
  339. This example defined a router to handle interaction with models from the
  340. ``auth`` app, and other routers to handle interaction with all other apps. If
  341. you left your ``default`` database empty and don't want to define a catch-all
  342. database router to handle all apps not otherwise specified, your routers must
  343. handle the names of all apps in :setting:`INSTALLED_APPS` before you migrate.
  344. See :ref:`contrib_app_multiple_databases` for information about contrib apps
  345. that must be together in one database.
  346. Manually selecting a database
  347. =============================
  348. Django also provides an API that allows you to maintain complete control
  349. over database usage in your code. A manually specified database allocation
  350. will take priority over a database allocated by a router.
  351. Manually selecting a database for a ``QuerySet``
  352. ------------------------------------------------
  353. You can select the database for a ``QuerySet`` at any point in the
  354. ``QuerySet`` "chain." Just call ``using()`` on the ``QuerySet`` to get
  355. another ``QuerySet`` that uses the specified database.
  356. ``using()`` takes a single argument: the alias of the database on
  357. which you want to run the query. For example::
  358. >>> # This will run on the 'default' database.
  359. >>> Author.objects.all()
  360. >>> # So will this.
  361. >>> Author.objects.using('default').all()
  362. >>> # This will run on the 'other' database.
  363. >>> Author.objects.using('other').all()
  364. Selecting a database for ``save()``
  365. -----------------------------------
  366. Use the ``using`` keyword to ``Model.save()`` to specify to which
  367. database the data should be saved.
  368. For example, to save an object to the ``legacy_users`` database, you'd
  369. use this::
  370. >>> my_object.save(using='legacy_users')
  371. If you don't specify ``using``, the ``save()`` method will save into
  372. the default database allocated by the routers.
  373. Moving an object from one database to another
  374. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  375. If you've saved an instance to one database, it might be tempting to
  376. use ``save(using=...)`` as a way to migrate the instance to a new
  377. database. However, if you don't take appropriate steps, this could
  378. have some unexpected consequences.
  379. Consider the following example::
  380. >>> p = Person(name='Fred')
  381. >>> p.save(using='first') # (statement 1)
  382. >>> p.save(using='second') # (statement 2)
  383. In statement 1, a new ``Person`` object is saved to the ``first``
  384. database. At this time, ``p`` doesn't have a primary key, so Django
  385. issues an SQL ``INSERT`` statement. This creates a primary key, and
  386. Django assigns that primary key to ``p``.
  387. When the save occurs in statement 2, ``p`` already has a primary key
  388. value, and Django will attempt to use that primary key on the new
  389. database. If the primary key value isn't in use in the ``second``
  390. database, then you won't have any problems -- the object will be
  391. copied to the new database.
  392. However, if the primary key of ``p`` is already in use on the
  393. ``second`` database, the existing object in the ``second`` database
  394. will be overridden when ``p`` is saved.
  395. You can avoid this in two ways. First, you can clear the primary key
  396. of the instance. If an object has no primary key, Django will treat it
  397. as a new object, avoiding any loss of data on the ``second``
  398. database::
  399. >>> p = Person(name='Fred')
  400. >>> p.save(using='first')
  401. >>> p.pk = None # Clear the primary key.
  402. >>> p.save(using='second') # Write a completely new object.
  403. The second option is to use the ``force_insert`` option to ``save()``
  404. to ensure that Django does an SQL ``INSERT``::
  405. >>> p = Person(name='Fred')
  406. >>> p.save(using='first')
  407. >>> p.save(using='second', force_insert=True)
  408. This will ensure that the person named ``Fred`` will have the same
  409. primary key on both databases. If that primary key is already in use
  410. when you try to save onto the ``second`` database, an error will be
  411. raised.
  412. Selecting a database to delete from
  413. -----------------------------------
  414. By default, a call to delete an existing object will be executed on
  415. the same database that was used to retrieve the object in the first
  416. place::
  417. >>> u = User.objects.using('legacy_users').get(username='fred')
  418. >>> u.delete() # will delete from the `legacy_users` database
  419. To specify the database from which a model will be deleted, pass a
  420. ``using`` keyword argument to the ``Model.delete()`` method. This
  421. argument works just like the ``using`` keyword argument to ``save()``.
  422. For example, if you're migrating a user from the ``legacy_users``
  423. database to the ``new_users`` database, you might use these commands::
  424. >>> user_obj.save(using='new_users')
  425. >>> user_obj.delete(using='legacy_users')
  426. Using managers with multiple databases
  427. --------------------------------------
  428. Use the ``db_manager()`` method on managers to give managers access to
  429. a non-default database.
  430. For example, say you have a custom manager method that touches the
  431. database -- ``User.objects.create_user()``. Because ``create_user()``
  432. is a manager method, not a ``QuerySet`` method, you can't do
  433. ``User.objects.using('new_users').create_user()``. (The
  434. ``create_user()`` method is only available on ``User.objects``, the
  435. manager, not on ``QuerySet`` objects derived from the manager.) The
  436. solution is to use ``db_manager()``, like this::
  437. User.objects.db_manager('new_users').create_user(...)
  438. ``db_manager()`` returns a copy of the manager bound to the database you specify.
  439. Using ``get_queryset()`` with multiple databases
  440. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  441. If you're overriding ``get_queryset()`` on your manager, be sure to
  442. either call the method on the parent (using ``super()``) or do the
  443. appropriate handling of the ``_db`` attribute on the manager (a string
  444. containing the name of the database to use).
  445. For example, if you want to return a custom ``QuerySet`` class from
  446. the ``get_queryset`` method, you could do this::
  447. class MyManager(models.Manager):
  448. def get_queryset(self):
  449. qs = CustomQuerySet(self.model)
  450. if self._db is not None:
  451. qs = qs.using(self._db)
  452. return qs
  453. Exposing multiple databases in Django's admin interface
  454. =======================================================
  455. Django's admin doesn't have any explicit support for multiple
  456. databases. If you want to provide an admin interface for a model on a
  457. database other than that specified by your router chain, you'll
  458. need to write custom :class:`~django.contrib.admin.ModelAdmin` classes
  459. that will direct the admin to use a specific database for content.
  460. ``ModelAdmin`` objects have five methods that require customization for
  461. multiple-database support::
  462. class MultiDBModelAdmin(admin.ModelAdmin):
  463. # A handy constant for the name of the alternate database.
  464. using = 'other'
  465. def save_model(self, request, obj, form, change):
  466. # Tell Django to save objects to the 'other' database.
  467. obj.save(using=self.using)
  468. def delete_model(self, request, obj):
  469. # Tell Django to delete objects from the 'other' database
  470. obj.delete(using=self.using)
  471. def get_queryset(self, request):
  472. # Tell Django to look for objects on the 'other' database.
  473. return super().get_queryset(request).using(self.using)
  474. def formfield_for_foreignkey(self, db_field, request, **kwargs):
  475. # Tell Django to populate ForeignKey widgets using a query
  476. # on the 'other' database.
  477. return super().formfield_for_foreignkey(db_field, request, using=self.using, **kwargs)
  478. def formfield_for_manytomany(self, db_field, request, **kwargs):
  479. # Tell Django to populate ManyToMany widgets using a query
  480. # on the 'other' database.
  481. return super().formfield_for_manytomany(db_field, request, using=self.using, **kwargs)
  482. The implementation provided here implements a multi-database strategy
  483. where all objects of a given type are stored on a specific database
  484. (e.g., all ``User`` objects are in the ``other`` database). If your
  485. usage of multiple databases is more complex, your ``ModelAdmin`` will
  486. need to reflect that strategy.
  487. :class:`~django.contrib.admin.InlineModelAdmin` objects can be handled in a
  488. similar fashion. They require three customized methods::
  489. class MultiDBTabularInline(admin.TabularInline):
  490. using = 'other'
  491. def get_queryset(self, request):
  492. # Tell Django to look for inline objects on the 'other' database.
  493. return super().get_queryset(request).using(self.using)
  494. def formfield_for_foreignkey(self, db_field, request, **kwargs):
  495. # Tell Django to populate ForeignKey widgets using a query
  496. # on the 'other' database.
  497. return super().formfield_for_foreignkey(db_field, request, using=self.using, **kwargs)
  498. def formfield_for_manytomany(self, db_field, request, **kwargs):
  499. # Tell Django to populate ManyToMany widgets using a query
  500. # on the 'other' database.
  501. return super().formfield_for_manytomany(db_field, request, using=self.using, **kwargs)
  502. Once you've written your model admin definitions, they can be
  503. registered with any ``Admin`` instance::
  504. from django.contrib import admin
  505. # Specialize the multi-db admin objects for use with specific models.
  506. class BookInline(MultiDBTabularInline):
  507. model = Book
  508. class PublisherAdmin(MultiDBModelAdmin):
  509. inlines = [BookInline]
  510. admin.site.register(Author, MultiDBModelAdmin)
  511. admin.site.register(Publisher, PublisherAdmin)
  512. othersite = admin.AdminSite('othersite')
  513. othersite.register(Publisher, MultiDBModelAdmin)
  514. This example sets up two admin sites. On the first site, the
  515. ``Author`` and ``Publisher`` objects are exposed; ``Publisher``
  516. objects have a tabular inline showing books published by that
  517. publisher. The second site exposes just publishers, without the
  518. inlines.
  519. Using raw cursors with multiple databases
  520. =========================================
  521. If you are using more than one database you can use
  522. ``django.db.connections`` to obtain the connection (and cursor) for a
  523. specific database. ``django.db.connections`` is a dictionary-like
  524. object that allows you to retrieve a specific connection using its
  525. alias::
  526. from django.db import connections
  527. with connections['my_db_alias'].cursor() as cursor:
  528. ...
  529. Limitations of multiple databases
  530. =================================
  531. .. _no_cross_database_relations:
  532. Cross-database relations
  533. ------------------------
  534. Django doesn't currently provide any support for foreign key or
  535. many-to-many relationships spanning multiple databases. If you
  536. have used a router to partition models to different databases,
  537. any foreign key and many-to-many relationships defined by those
  538. models must be internal to a single database.
  539. This is because of referential integrity. In order to maintain a
  540. relationship between two objects, Django needs to know that the
  541. primary key of the related object is valid. If the primary key is
  542. stored on a separate database, it's not possible to easily evaluate
  543. the validity of a primary key.
  544. If you're using Postgres, Oracle, or MySQL with InnoDB, this is
  545. enforced at the database integrity level -- database level key
  546. constraints prevent the creation of relations that can't be validated.
  547. However, if you're using SQLite or MySQL with MyISAM tables, there is
  548. no enforced referential integrity; as a result, you may be able to
  549. 'fake' cross database foreign keys. However, this configuration is not
  550. officially supported by Django.
  551. .. _contrib_app_multiple_databases:
  552. Behavior of contrib apps
  553. ------------------------
  554. Several contrib apps include models, and some apps depend on others. Since
  555. cross-database relationships are impossible, this creates some restrictions on
  556. how you can split these models across databases:
  557. - each one of ``contenttypes.ContentType``, ``sessions.Session`` and
  558. ``sites.Site`` can be stored in any database, given a suitable router.
  559. - ``auth`` models — ``User``, ``Group`` and ``Permission`` — are linked
  560. together and linked to ``ContentType``, so they must be stored in the same
  561. database as ``ContentType``.
  562. - ``admin`` depends on ``auth``, so its models must be in the same database
  563. as ``auth``.
  564. - ``flatpages`` and ``redirects`` depend on ``sites``, so their models must be
  565. in the same database as ``sites``.
  566. In addition, some objects are automatically created just after
  567. :djadmin:`migrate` creates a table to hold them in a database:
  568. - a default ``Site``,
  569. - a ``ContentType`` for each model (including those not stored in that
  570. database),
  571. - three ``Permission`` for each model (including those not stored in that
  572. database).
  573. For common setups with multiple databases, it isn't useful to have these
  574. objects in more than one database. Common setups include primary/replica and
  575. connecting to external databases. Therefore, it's recommended to write a
  576. :ref:`database router<topics-db-multi-db-routing>` that allows synchronizing
  577. these three models to only one database. Use the same approach for contrib
  578. and third-party apps that don't need their tables in multiple databases.
  579. .. warning::
  580. If you're synchronizing content types to more than one database, be aware
  581. that their primary keys may not match across databases. This may result in
  582. data corruption or data loss.