multi-db.txt 27 KB

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