transactions.txt 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. =====================
  2. Database transactions
  3. =====================
  4. .. module:: django.db.transaction
  5. Django gives you a few ways to control how database transactions are managed.
  6. Managing database transactions
  7. ==============================
  8. Django's default transaction behavior
  9. -------------------------------------
  10. Django's default behavior is to run in autocommit mode. Each query is
  11. immediately committed to the database, unless a transaction is active.
  12. :ref:`See below for details <autocommit-details>`.
  13. Django uses transactions or savepoints automatically to guarantee the
  14. integrity of ORM operations that require multiple queries, especially
  15. :ref:`delete() <topics-db-queries-delete>` and :ref:`update()
  16. <topics-db-queries-update>` queries.
  17. Django's :class:`~django.test.TestCase` class also wraps each test in a
  18. transaction for performance reasons.
  19. .. _tying-transactions-to-http-requests:
  20. Tying transactions to HTTP requests
  21. -----------------------------------
  22. A common way to handle transactions on the web is to wrap each request in a
  23. transaction. Set :setting:`ATOMIC_REQUESTS <DATABASE-ATOMIC_REQUESTS>` to
  24. ``True`` in the configuration of each database for which you want to enable
  25. this behavior.
  26. It works like this. Before calling a view function, Django starts a
  27. transaction. If the response is produced without problems, Django commits the
  28. transaction. If the view produces an exception, Django rolls back the
  29. transaction.
  30. You may perform partial commits and rollbacks in your view code, typically with
  31. the :func:`atomic` context manager. However, at the end of the view, either
  32. all the changes will be committed, or none of them.
  33. .. warning::
  34. While the simplicity of this transaction model is appealing, it also makes it
  35. inefficient when traffic increases. Opening a transaction for every view has
  36. some overhead. The impact on performance depends on the query patterns of your
  37. application and on how well your database handles locking.
  38. .. admonition:: Per-request transactions and streaming responses
  39. When a view returns a :class:`~django.http.StreamingHttpResponse`, reading
  40. the contents of the response will often execute code to generate the
  41. content. Since the view has already returned, such code runs outside of
  42. the transaction.
  43. Generally speaking, it isn't advisable to write to the database while
  44. generating a streaming response, since there's no sensible way to handle
  45. errors after starting to send the response.
  46. In practice, this feature simply wraps every view function in the :func:`atomic`
  47. decorator described below.
  48. Note that only the execution of your view is enclosed in the transactions.
  49. Middleware runs outside of the transaction, and so does the rendering of
  50. template responses.
  51. When :setting:`ATOMIC_REQUESTS <DATABASE-ATOMIC_REQUESTS>` is enabled, it's
  52. still possible to prevent views from running in a transaction.
  53. .. function:: non_atomic_requests(using=None)
  54. This decorator will negate the effect of :setting:`ATOMIC_REQUESTS
  55. <DATABASE-ATOMIC_REQUESTS>` for a given view::
  56. from django.db import transaction
  57. @transaction.non_atomic_requests
  58. def my_view(request):
  59. do_stuff()
  60. @transaction.non_atomic_requests(using='other')
  61. def my_other_view(request):
  62. do_stuff_on_the_other_database()
  63. It only works if it's applied to the view itself.
  64. Controlling transactions explicitly
  65. -----------------------------------
  66. Django provides a single API to control database transactions.
  67. .. function:: atomic(using=None, savepoint=True)
  68. Atomicity is the defining property of database transactions. ``atomic``
  69. allows us to create a block of code within which the atomicity on the
  70. database is guaranteed. If the block of code is successfully completed, the
  71. changes are committed to the database. If there is an exception, the
  72. changes are rolled back.
  73. ``atomic`` blocks can be nested. In this case, when an inner block
  74. completes successfully, its effects can still be rolled back if an
  75. exception is raised in the outer block at a later point.
  76. ``atomic`` is usable both as a :py:term:`decorator`::
  77. from django.db import transaction
  78. @transaction.atomic
  79. def viewfunc(request):
  80. # This code executes inside a transaction.
  81. do_stuff()
  82. and as a :py:term:`context manager`::
  83. from django.db import transaction
  84. def viewfunc(request):
  85. # This code executes in autocommit mode (Django's default).
  86. do_stuff()
  87. with transaction.atomic():
  88. # This code executes inside a transaction.
  89. do_more_stuff()
  90. Wrapping ``atomic`` in a try/except block allows for natural handling of
  91. integrity errors::
  92. from django.db import IntegrityError, transaction
  93. @transaction.atomic
  94. def viewfunc(request):
  95. create_parent()
  96. try:
  97. with transaction.atomic():
  98. generate_relationships()
  99. except IntegrityError:
  100. handle_exception()
  101. add_children()
  102. In this example, even if ``generate_relationships()`` causes a database
  103. error by breaking an integrity constraint, you can execute queries in
  104. ``add_children()``, and the changes from ``create_parent()`` are still
  105. there. Note that any operations attempted in ``generate_relationships()``
  106. will already have been rolled back safely when ``handle_exception()`` is
  107. called, so the exception handler can also operate on the database if
  108. necessary.
  109. .. admonition:: Avoid catching exceptions inside ``atomic``!
  110. When exiting an ``atomic`` block, Django looks at whether it's exited
  111. normally or with an exception to determine whether to commit or roll
  112. back. If you catch and handle exceptions inside an ``atomic`` block,
  113. you may hide from Django the fact that a problem has happened. This
  114. can result in unexpected behavior.
  115. This is mostly a concern for :exc:`~django.db.DatabaseError` and its
  116. subclasses such as :exc:`~django.db.IntegrityError`. After such an
  117. error, the transaction is broken and Django will perform a rollback at
  118. the end of the ``atomic`` block. If you attempt to run database
  119. queries before the rollback happens, Django will raise a
  120. :class:`~django.db.transaction.TransactionManagementError`. You may
  121. also encounter this behavior when an ORM-related signal handler raises
  122. an exception.
  123. The correct way to catch database errors is around an ``atomic`` block
  124. as shown above. If necessary, add an extra ``atomic`` block for this
  125. purpose. This pattern has another advantage: it delimits explicitly
  126. which operations will be rolled back if an exception occurs.
  127. If you catch exceptions raised by raw SQL queries, Django's behavior
  128. is unspecified and database-dependent.
  129. In order to guarantee atomicity, ``atomic`` disables some APIs. Attempting
  130. to commit, roll back, or change the autocommit state of the database
  131. connection within an ``atomic`` block will raise an exception.
  132. ``atomic`` takes a ``using`` argument which should be the name of a
  133. database. If this argument isn't provided, Django uses the ``"default"``
  134. database.
  135. Under the hood, Django's transaction management code:
  136. - opens a transaction when entering the outermost ``atomic`` block;
  137. - creates a savepoint when entering an inner ``atomic`` block;
  138. - releases or rolls back to the savepoint when exiting an inner block;
  139. - commits or rolls back the transaction when exiting the outermost block.
  140. You can disable the creation of savepoints for inner blocks by setting the
  141. ``savepoint`` argument to ``False``. If an exception occurs, Django will
  142. perform the rollback when exiting the first parent block with a savepoint
  143. if there is one, and the outermost block otherwise. Atomicity is still
  144. guaranteed by the outer transaction. This option should only be used if
  145. the overhead of savepoints is noticeable. It has the drawback of breaking
  146. the error handling described above.
  147. You may use ``atomic`` when autocommit is turned off. It will only use
  148. savepoints, even for the outermost block, and it will raise an exception
  149. if the outermost block is declared with ``savepoint=False``.
  150. .. admonition:: Performance considerations
  151. Open transactions have a performance cost for your database server. To
  152. minimize this overhead, keep your transactions as short as possible. This
  153. is especially important if you're using :func:`atomic` in long-running
  154. processes, outside of Django's request / response cycle.
  155. Autocommit
  156. ==========
  157. .. _autocommit-details:
  158. Why Django uses autocommit
  159. --------------------------
  160. In the SQL standards, each SQL query starts a transaction, unless one is
  161. already active. Such transactions must then be explicitly committed or rolled
  162. back.
  163. This isn't always convenient for application developers. To alleviate this
  164. problem, most databases provide an autocommit mode. When autocommit is turned
  165. on and no transaction is active, each SQL query gets wrapped in its own
  166. transaction. In other words, not only does each such query start a
  167. transaction, but the transaction also gets automatically committed or rolled
  168. back, depending on whether the query succeeded.
  169. :pep:`249`, the Python Database API Specification v2.0, requires autocommit to
  170. be initially turned off. Django overrides this default and turns autocommit
  171. on.
  172. To avoid this, you can :ref:`deactivate the transaction management
  173. <deactivate-transaction-management>`, but it isn't recommended.
  174. .. _deactivate-transaction-management:
  175. Deactivating transaction management
  176. -----------------------------------
  177. You can totally disable Django's transaction management for a given database
  178. by setting :setting:`AUTOCOMMIT <DATABASE-AUTOCOMMIT>` to ``False`` in its
  179. configuration. If you do this, Django won't enable autocommit, and won't
  180. perform any commits. You'll get the regular behavior of the underlying
  181. database library.
  182. This requires you to commit explicitly every transaction, even those started
  183. by Django or by third-party libraries. Thus, this is best used in situations
  184. where you want to run your own transaction-controlling middleware or do
  185. something really strange.
  186. Low-level APIs
  187. ==============
  188. .. warning::
  189. Always prefer :func:`atomic` if possible at all. It accounts for the
  190. idiosyncrasies of each database and prevents invalid operations.
  191. The low level APIs are only useful if you're implementing your own
  192. transaction management.
  193. .. _managing-autocommit:
  194. Autocommit
  195. ----------
  196. Django provides a straightforward API in the :mod:`django.db.transaction`
  197. module to manage the autocommit state of each database connection.
  198. .. function:: get_autocommit(using=None)
  199. .. function:: set_autocommit(autocommit, using=None)
  200. These functions take a ``using`` argument which should be the name of a
  201. database. If it isn't provided, Django uses the ``"default"`` database.
  202. Autocommit is initially turned on. If you turn it off, it's your
  203. responsibility to restore it.
  204. Once you turn autocommit off, you get the default behavior of your database
  205. adapter, and Django won't help you. Although that behavior is specified in
  206. :pep:`249`, implementations of adapters aren't always consistent with one
  207. another. Review the documentation of the adapter you're using carefully.
  208. You must ensure that no transaction is active, usually by issuing a
  209. :func:`commit` or a :func:`rollback`, before turning autocommit back on.
  210. Django will refuse to turn autocommit off when an :func:`atomic` block is
  211. active, because that would break atomicity.
  212. Transactions
  213. ------------
  214. A transaction is an atomic set of database queries. Even if your program
  215. crashes, the database guarantees that either all the changes will be applied,
  216. or none of them.
  217. Django doesn't provide an API to start a transaction. The expected way to
  218. start a transaction is to disable autocommit with :func:`set_autocommit`.
  219. Once you're in a transaction, you can choose either to apply the changes
  220. you've performed until this point with :func:`commit`, or to cancel them with
  221. :func:`rollback`. These functions are defined in :mod:`django.db.transaction`.
  222. .. function:: commit(using=None)
  223. .. function:: rollback(using=None)
  224. These functions take a ``using`` argument which should be the name of a
  225. database. If it isn't provided, Django uses the ``"default"`` database.
  226. Django will refuse to commit or to rollback when an :func:`atomic` block is
  227. active, because that would break atomicity.
  228. .. _topics-db-transactions-savepoints:
  229. Savepoints
  230. ----------
  231. A savepoint is a marker within a transaction that enables you to roll back
  232. part of a transaction, rather than the full transaction. Savepoints are
  233. available with the SQLite (≥ 3.6.8), PostgreSQL, Oracle and MySQL (when using
  234. the InnoDB storage engine) backends. Other backends provide the savepoint
  235. functions, but they're empty operations -- they don't actually do anything.
  236. Savepoints aren't especially useful if you are using autocommit, the default
  237. behavior of Django. However, once you open a transaction with :func:`atomic`,
  238. you build up a series of database operations awaiting a commit or rollback. If
  239. you issue a rollback, the entire transaction is rolled back. Savepoints
  240. provide the ability to perform a fine-grained rollback, rather than the full
  241. rollback that would be performed by ``transaction.rollback()``.
  242. When the :func:`atomic` decorator is nested, it creates a savepoint to allow
  243. partial commit or rollback. You're strongly encouraged to use :func:`atomic`
  244. rather than the functions described below, but they're still part of the
  245. public API, and there's no plan to deprecate them.
  246. Each of these functions takes a ``using`` argument which should be the name of
  247. a database for which the behavior applies. If no ``using`` argument is
  248. provided then the ``"default"`` database is used.
  249. Savepoints are controlled by three functions in :mod:`django.db.transaction`:
  250. .. function:: savepoint(using=None)
  251. Creates a new savepoint. This marks a point in the transaction that is
  252. known to be in a "good" state. Returns the savepoint ID (``sid``).
  253. .. function:: savepoint_commit(sid, using=None)
  254. Releases savepoint ``sid``. The changes performed since the savepoint was
  255. created become part of the transaction.
  256. .. function:: savepoint_rollback(sid, using=None)
  257. Rolls back the transaction to savepoint ``sid``.
  258. These functions do nothing if savepoints aren't supported or if the database
  259. is in autocommit mode.
  260. In addition, there's a utility function:
  261. .. function:: clean_savepoints(using=None)
  262. Resets the counter used to generate unique savepoint IDs.
  263. The following example demonstrates the use of savepoints::
  264. from django.db import transaction
  265. # open a transaction
  266. @transaction.atomic
  267. def viewfunc(request):
  268. a.save()
  269. # transaction now contains a.save()
  270. sid = transaction.savepoint()
  271. b.save()
  272. # transaction now contains a.save() and b.save()
  273. if want_to_keep_b:
  274. transaction.savepoint_commit(sid)
  275. # open transaction still contains a.save() and b.save()
  276. else:
  277. transaction.savepoint_rollback(sid)
  278. # open transaction now contains only a.save()
  279. Savepoints may be used to recover from a database error by performing a partial
  280. rollback. If you're doing this inside an :func:`atomic` block, the entire block
  281. will still be rolled back, because it doesn't know you've handled the situation
  282. at a lower level! To prevent this, you can control the rollback behavior with
  283. the following functions.
  284. .. function:: get_rollback(using=None)
  285. .. function:: set_rollback(rollback, using=None)
  286. Setting the rollback flag to ``True`` forces a rollback when exiting the
  287. innermost atomic block. This may be useful to trigger a rollback without
  288. raising an exception.
  289. Setting it to ``False`` prevents such a rollback. Before doing that, make sure
  290. you've rolled back the transaction to a known-good savepoint within the current
  291. atomic block! Otherwise you're breaking atomicity and data corruption may
  292. occur.
  293. Database-specific notes
  294. =======================
  295. .. _savepoints-in-sqlite:
  296. Savepoints in SQLite
  297. --------------------
  298. While SQLite ≥ 3.6.8 supports savepoints, a flaw in the design of the
  299. :mod:`sqlite3` module makes them hardly usable.
  300. When autocommit is enabled, savepoints don't make sense. When it's disabled,
  301. :mod:`sqlite3` commits implicitly before savepoint statements. (In fact, it
  302. commits before any statement other than ``SELECT``, ``INSERT``, ``UPDATE``,
  303. ``DELETE`` and ``REPLACE``.) This bug has two consequences:
  304. - The low level APIs for savepoints are only usable inside a transaction ie.
  305. inside an :func:`atomic` block.
  306. - It's impossible to use :func:`atomic` when autocommit is turned off.
  307. Transactions in MySQL
  308. ---------------------
  309. If you're using MySQL, your tables may or may not support transactions; it
  310. depends on your MySQL version and the table types you're using. (By
  311. "table types," we mean something like "InnoDB" or "MyISAM".) MySQL transaction
  312. peculiarities are outside the scope of this article, but the MySQL site has
  313. `information on MySQL transactions`_.
  314. If your MySQL setup does *not* support transactions, then Django will always
  315. function in autocommit mode: statements will be executed and committed as soon
  316. as they're called. If your MySQL setup *does* support transactions, Django
  317. will handle transactions as explained in this document.
  318. .. _information on MySQL transactions: http://dev.mysql.com/doc/refman/5.6/en/sql-syntax-transactions.html
  319. Handling exceptions within PostgreSQL transactions
  320. --------------------------------------------------
  321. .. note::
  322. This section is relevant only if you're implementing your own transaction
  323. management. This problem cannot occur in Django's default mode and
  324. :func:`atomic` handles it automatically.
  325. Inside a transaction, when a call to a PostgreSQL cursor raises an exception
  326. (typically ``IntegrityError``), all subsequent SQL in the same transaction
  327. will fail with the error "current transaction is aborted, queries ignored
  328. until end of transaction block". Whilst simple use of ``save()`` is unlikely
  329. to raise an exception in PostgreSQL, there are more advanced usage patterns
  330. which might, such as saving objects with unique fields, saving using the
  331. force_insert/force_update flag, or invoking custom SQL.
  332. There are several ways to recover from this sort of error.
  333. Transaction rollback
  334. ~~~~~~~~~~~~~~~~~~~~
  335. The first option is to roll back the entire transaction. For example::
  336. a.save() # Succeeds, but may be undone by transaction rollback
  337. try:
  338. b.save() # Could throw exception
  339. except IntegrityError:
  340. transaction.rollback()
  341. c.save() # Succeeds, but a.save() may have been undone
  342. Calling ``transaction.rollback()`` rolls back the entire transaction. Any
  343. uncommitted database operations will be lost. In this example, the changes
  344. made by ``a.save()`` would be lost, even though that operation raised no error
  345. itself.
  346. Savepoint rollback
  347. ~~~~~~~~~~~~~~~~~~
  348. You can use :ref:`savepoints <topics-db-transactions-savepoints>` to control
  349. the extent of a rollback. Before performing a database operation that could
  350. fail, you can set or update the savepoint; that way, if the operation fails,
  351. you can roll back the single offending operation, rather than the entire
  352. transaction. For example::
  353. a.save() # Succeeds, and never undone by savepoint rollback
  354. sid = transaction.savepoint()
  355. try:
  356. b.save() # Could throw exception
  357. transaction.savepoint_commit(sid)
  358. except IntegrityError:
  359. transaction.savepoint_rollback(sid)
  360. c.save() # Succeeds, and a.save() is never undone
  361. In this example, ``a.save()`` will not be undone in the case where
  362. ``b.save()`` raises an exception.