multi-db.txt 28 KB

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