multi-db.txt 30 KB

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