multi-db.txt 27 KB

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