2013-03-05 05:17:35 +08:00
|
|
|
=====================
|
|
|
|
Database transactions
|
|
|
|
=====================
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2011-03-23 04:12:17 +08:00
|
|
|
.. module:: django.db.transaction
|
2010-02-24 21:55:37 +08:00
|
|
|
|
2013-03-03 22:55:11 +08:00
|
|
|
Django gives you a few ways to control how database transactions are managed.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-05 05:17:35 +08:00
|
|
|
Managing database transactions
|
|
|
|
==============================
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
Django's default transaction behavior
|
2013-03-05 05:17:35 +08:00
|
|
|
-------------------------------------
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-03 22:55:11 +08:00
|
|
|
Django's default behavior is to run in autocommit mode. Each query is
|
2014-01-14 20:41:52 +08:00
|
|
|
immediately committed to the database, unless a transaction is active.
|
|
|
|
:ref:`See below for details <autocommit-details>`.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-08 18:35:54 +08:00
|
|
|
Django uses transactions or savepoints automatically to guarantee the
|
|
|
|
integrity of ORM operations that require multiple queries, especially
|
|
|
|
:ref:`delete() <topics-db-queries-delete>` and :ref:`update()
|
|
|
|
<topics-db-queries-update>` queries.
|
2013-03-03 22:55:11 +08:00
|
|
|
|
2014-01-14 20:41:52 +08:00
|
|
|
Django's :class:`~django.test.TestCase` class also wraps each test in a
|
|
|
|
transaction for performance reasons.
|
|
|
|
|
2013-03-06 18:12:24 +08:00
|
|
|
.. _tying-transactions-to-http-requests:
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
Tying transactions to HTTP requests
|
2013-03-05 05:17:35 +08:00
|
|
|
-----------------------------------
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-06 18:12:24 +08:00
|
|
|
A common way to handle transactions on the web is to wrap each request in a
|
|
|
|
transaction. Set :setting:`ATOMIC_REQUESTS <DATABASE-ATOMIC_REQUESTS>` to
|
|
|
|
``True`` in the configuration of each database for which you want to enable
|
|
|
|
this behavior.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-13 21:47:48 +08:00
|
|
|
It works like this. Before calling a view function, Django starts a
|
|
|
|
transaction. If the response is produced without problems, Django commits the
|
|
|
|
transaction. If the view produces an exception, Django rolls back the
|
|
|
|
transaction.
|
2013-03-06 18:12:24 +08:00
|
|
|
|
2015-08-26 08:19:35 +08:00
|
|
|
You may perform subtransactions using savepoints in your view code, typically
|
|
|
|
with the :func:`atomic` context manager. However, at the end of the view,
|
|
|
|
either all or none of the changes will be committed.
|
2013-03-06 18:12:24 +08:00
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
While the simplicity of this transaction model is appealing, it also makes it
|
|
|
|
inefficient when traffic increases. Opening a transaction for every view has
|
|
|
|
some overhead. The impact on performance depends on the query patterns of your
|
|
|
|
application and on how well your database handles locking.
|
|
|
|
|
|
|
|
.. admonition:: Per-request transactions and streaming responses
|
|
|
|
|
|
|
|
When a view returns a :class:`~django.http.StreamingHttpResponse`, reading
|
|
|
|
the contents of the response will often execute code to generate the
|
|
|
|
content. Since the view has already returned, such code runs outside of
|
|
|
|
the transaction.
|
|
|
|
|
|
|
|
Generally speaking, it isn't advisable to write to the database while
|
|
|
|
generating a streaming response, since there's no sensible way to handle
|
|
|
|
errors after starting to send the response.
|
|
|
|
|
|
|
|
In practice, this feature simply wraps every view function in the :func:`atomic`
|
|
|
|
decorator described below.
|
|
|
|
|
2013-05-01 00:38:59 +08:00
|
|
|
Note that only the execution of your view is enclosed in the transactions.
|
|
|
|
Middleware runs outside of the transaction, and so does the rendering of
|
2013-03-06 18:12:24 +08:00
|
|
|
template responses.
|
|
|
|
|
2013-05-19 23:55:12 +08:00
|
|
|
When :setting:`ATOMIC_REQUESTS <DATABASE-ATOMIC_REQUESTS>` is enabled, it's
|
|
|
|
still possible to prevent views from running in a transaction.
|
|
|
|
|
|
|
|
.. function:: non_atomic_requests(using=None)
|
|
|
|
|
|
|
|
This decorator will negate the effect of :setting:`ATOMIC_REQUESTS
|
|
|
|
<DATABASE-ATOMIC_REQUESTS>` for a given view::
|
|
|
|
|
|
|
|
from django.db import transaction
|
|
|
|
|
|
|
|
@transaction.non_atomic_requests
|
|
|
|
def my_view(request):
|
|
|
|
do_stuff()
|
|
|
|
|
|
|
|
@transaction.non_atomic_requests(using='other')
|
|
|
|
def my_other_view(request):
|
|
|
|
do_stuff_on_the_other_database()
|
|
|
|
|
|
|
|
It only works if it's applied to the view itself.
|
|
|
|
|
2013-03-05 05:17:35 +08:00
|
|
|
Controlling transactions explicitly
|
|
|
|
-----------------------------------
|
|
|
|
|
|
|
|
Django provides a single API to control database transactions.
|
|
|
|
|
2013-03-08 22:44:41 +08:00
|
|
|
.. function:: atomic(using=None, savepoint=True)
|
2013-03-05 05:17:35 +08:00
|
|
|
|
2013-05-17 22:12:49 +08:00
|
|
|
Atomicity is the defining property of database transactions. ``atomic``
|
|
|
|
allows us to create a block of code within which the atomicity on the
|
|
|
|
database is guaranteed. If the block of code is successfully completed, the
|
|
|
|
changes are committed to the database. If there is an exception, the
|
|
|
|
changes are rolled back.
|
2013-03-05 05:17:35 +08:00
|
|
|
|
2013-05-17 22:12:49 +08:00
|
|
|
``atomic`` blocks can be nested. In this case, when an inner block
|
|
|
|
completes successfully, its effects can still be rolled back if an
|
|
|
|
exception is raised in the outer block at a later point.
|
2013-03-05 05:17:35 +08:00
|
|
|
|
2014-12-19 23:25:57 +08:00
|
|
|
``atomic`` is usable both as a :py:term:`decorator`::
|
2013-03-05 05:17:35 +08:00
|
|
|
|
|
|
|
from django.db import transaction
|
|
|
|
|
|
|
|
@transaction.atomic
|
|
|
|
def viewfunc(request):
|
|
|
|
# This code executes inside a transaction.
|
|
|
|
do_stuff()
|
|
|
|
|
2014-12-19 23:25:57 +08:00
|
|
|
and as a :py:term:`context manager`::
|
2013-03-05 05:17:35 +08:00
|
|
|
|
|
|
|
from django.db import transaction
|
|
|
|
|
|
|
|
def viewfunc(request):
|
|
|
|
# This code executes in autocommit mode (Django's default).
|
|
|
|
do_stuff()
|
|
|
|
|
|
|
|
with transaction.atomic():
|
|
|
|
# This code executes inside a transaction.
|
|
|
|
do_more_stuff()
|
|
|
|
|
|
|
|
Wrapping ``atomic`` in a try/except block allows for natural handling of
|
|
|
|
integrity errors::
|
|
|
|
|
|
|
|
from django.db import IntegrityError, transaction
|
|
|
|
|
|
|
|
@transaction.atomic
|
|
|
|
def viewfunc(request):
|
2013-05-17 22:12:49 +08:00
|
|
|
create_parent()
|
2013-03-05 05:17:35 +08:00
|
|
|
|
|
|
|
try:
|
|
|
|
with transaction.atomic():
|
2013-05-17 22:12:49 +08:00
|
|
|
generate_relationships()
|
2013-03-05 05:17:35 +08:00
|
|
|
except IntegrityError:
|
|
|
|
handle_exception()
|
|
|
|
|
2013-05-17 22:12:49 +08:00
|
|
|
add_children()
|
2013-03-05 05:17:35 +08:00
|
|
|
|
2013-05-17 22:12:49 +08:00
|
|
|
In this example, even if ``generate_relationships()`` causes a database
|
2013-03-05 05:17:35 +08:00
|
|
|
error by breaking an integrity constraint, you can execute queries in
|
2013-05-17 22:12:49 +08:00
|
|
|
``add_children()``, and the changes from ``create_parent()`` are still
|
|
|
|
there. Note that any operations attempted in ``generate_relationships()``
|
|
|
|
will already have been rolled back safely when ``handle_exception()`` is
|
|
|
|
called, so the exception handler can also operate on the database if
|
|
|
|
necessary.
|
2013-03-05 05:17:35 +08:00
|
|
|
|
2013-09-23 04:14:17 +08:00
|
|
|
.. admonition:: Avoid catching exceptions inside ``atomic``!
|
|
|
|
|
|
|
|
When exiting an ``atomic`` block, Django looks at whether it's exited
|
|
|
|
normally or with an exception to determine whether to commit or roll
|
|
|
|
back. If you catch and handle exceptions inside an ``atomic`` block,
|
|
|
|
you may hide from Django the fact that a problem has happened. This
|
|
|
|
can result in unexpected behavior.
|
|
|
|
|
|
|
|
This is mostly a concern for :exc:`~django.db.DatabaseError` and its
|
|
|
|
subclasses such as :exc:`~django.db.IntegrityError`. After such an
|
|
|
|
error, the transaction is broken and Django will perform a rollback at
|
|
|
|
the end of the ``atomic`` block. If you attempt to run database
|
|
|
|
queries before the rollback happens, Django will raise a
|
|
|
|
:class:`~django.db.transaction.TransactionManagementError`. You may
|
|
|
|
also encounter this behavior when an ORM-related signal handler raises
|
|
|
|
an exception.
|
2013-09-21 03:56:35 +08:00
|
|
|
|
|
|
|
The correct way to catch database errors is around an ``atomic`` block
|
|
|
|
as shown above. If necessary, add an extra ``atomic`` block for this
|
2013-09-23 04:14:17 +08:00
|
|
|
purpose. This pattern has another advantage: it delimits explicitly
|
2013-09-21 03:56:35 +08:00
|
|
|
which operations will be rolled back if an exception occurs.
|
|
|
|
|
2013-09-23 04:14:17 +08:00
|
|
|
If you catch exceptions raised by raw SQL queries, Django's behavior
|
|
|
|
is unspecified and database-dependent.
|
|
|
|
|
2013-03-05 05:17:35 +08:00
|
|
|
In order to guarantee atomicity, ``atomic`` disables some APIs. Attempting
|
|
|
|
to commit, roll back, or change the autocommit state of the database
|
|
|
|
connection within an ``atomic`` block will raise an exception.
|
|
|
|
|
2013-05-17 22:12:49 +08:00
|
|
|
``atomic`` takes a ``using`` argument which should be the name of a
|
|
|
|
database. If this argument isn't provided, Django uses the ``"default"``
|
|
|
|
database.
|
|
|
|
|
2013-03-05 05:17:35 +08:00
|
|
|
Under the hood, Django's transaction management code:
|
|
|
|
|
|
|
|
- opens a transaction when entering the outermost ``atomic`` block;
|
|
|
|
- creates a savepoint when entering an inner ``atomic`` block;
|
|
|
|
- releases or rolls back to the savepoint when exiting an inner block;
|
|
|
|
- commits or rolls back the transaction when exiting the outermost block.
|
|
|
|
|
2013-03-08 22:44:41 +08:00
|
|
|
You can disable the creation of savepoints for inner blocks by setting the
|
|
|
|
``savepoint`` argument to ``False``. If an exception occurs, Django will
|
|
|
|
perform the rollback when exiting the first parent block with a savepoint
|
|
|
|
if there is one, and the outermost block otherwise. Atomicity is still
|
|
|
|
guaranteed by the outer transaction. This option should only be used if
|
|
|
|
the overhead of savepoints is noticeable. It has the drawback of breaking
|
|
|
|
the error handling described above.
|
|
|
|
|
2013-03-13 21:08:32 +08:00
|
|
|
You may use ``atomic`` when autocommit is turned off. It will only use
|
2015-09-22 02:53:10 +08:00
|
|
|
savepoints, even for the outermost block.
|
|
|
|
|
2013-03-08 06:06:58 +08:00
|
|
|
.. admonition:: Performance considerations
|
|
|
|
|
|
|
|
Open transactions have a performance cost for your database server. To
|
|
|
|
minimize this overhead, keep your transactions as short as possible. This
|
2014-05-13 12:18:01 +08:00
|
|
|
is especially important if you're using :func:`atomic` in long-running
|
2013-03-08 06:06:58 +08:00
|
|
|
processes, outside of Django's request / response cycle.
|
|
|
|
|
2013-03-07 21:42:51 +08:00
|
|
|
Autocommit
|
|
|
|
==========
|
|
|
|
|
|
|
|
.. _autocommit-details:
|
|
|
|
|
|
|
|
Why Django uses autocommit
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
In the SQL standards, each SQL query starts a transaction, unless one is
|
2014-01-14 20:41:52 +08:00
|
|
|
already active. Such transactions must then be explicitly committed or rolled
|
|
|
|
back.
|
2013-03-07 21:42:51 +08:00
|
|
|
|
|
|
|
This isn't always convenient for application developers. To alleviate this
|
|
|
|
problem, most databases provide an autocommit mode. When autocommit is turned
|
2014-01-14 20:41:52 +08:00
|
|
|
on and no transaction is active, each SQL query gets wrapped in its own
|
2014-01-26 16:30:10 +08:00
|
|
|
transaction. In other words, not only does each such query start a
|
2014-01-14 20:41:52 +08:00
|
|
|
transaction, but the transaction also gets automatically committed or rolled
|
|
|
|
back, depending on whether the query succeeded.
|
2013-03-07 21:42:51 +08:00
|
|
|
|
|
|
|
:pep:`249`, the Python Database API Specification v2.0, requires autocommit to
|
|
|
|
be initially turned off. Django overrides this default and turns autocommit
|
|
|
|
on.
|
|
|
|
|
|
|
|
To avoid this, you can :ref:`deactivate the transaction management
|
|
|
|
<deactivate-transaction-management>`, but it isn't recommended.
|
|
|
|
|
|
|
|
.. _deactivate-transaction-management:
|
|
|
|
|
|
|
|
Deactivating transaction management
|
|
|
|
-----------------------------------
|
|
|
|
|
|
|
|
You can totally disable Django's transaction management for a given database
|
|
|
|
by setting :setting:`AUTOCOMMIT <DATABASE-AUTOCOMMIT>` to ``False`` in its
|
|
|
|
configuration. If you do this, Django won't enable autocommit, and won't
|
|
|
|
perform any commits. You'll get the regular behavior of the underlying
|
|
|
|
database library.
|
|
|
|
|
|
|
|
This requires you to commit explicitly every transaction, even those started
|
|
|
|
by Django or by third-party libraries. Thus, this is best used in situations
|
|
|
|
where you want to run your own transaction-controlling middleware or do
|
|
|
|
something really strange.
|
|
|
|
|
2015-07-01 00:18:56 +08:00
|
|
|
Performing actions after commit
|
|
|
|
===============================
|
|
|
|
|
|
|
|
Sometimes you need to perform an action related to the current database
|
|
|
|
transaction, but only if the transaction successfully commits. Examples might
|
|
|
|
include a `Celery`_ task, an email notification, or a cache invalidation.
|
|
|
|
|
|
|
|
.. _Celery: http://www.celeryproject.org/
|
|
|
|
|
|
|
|
Django provides the :func:`on_commit` function to register callback functions
|
|
|
|
that should be executed after a transaction is successfully committed:
|
|
|
|
|
|
|
|
.. function:: on_commit(func, using=None)
|
|
|
|
|
|
|
|
Pass any function (that takes no arguments) to :func:`on_commit`::
|
|
|
|
|
|
|
|
from django.db import transaction
|
|
|
|
|
|
|
|
def do_something():
|
|
|
|
pass # send a mail, invalidate a cache, fire off a Celery task, etc.
|
|
|
|
|
|
|
|
transaction.on_commit(do_something)
|
|
|
|
|
|
|
|
You can also wrap your function in a lambda::
|
|
|
|
|
|
|
|
transaction.on_commit(lambda: some_celery_task.delay('arg1'))
|
|
|
|
|
|
|
|
The function you pass in will be called immediately after a hypothetical
|
|
|
|
database write made where ``on_commit()`` is called would be successfully
|
|
|
|
committed.
|
|
|
|
|
|
|
|
If you call ``on_commit()`` while there isn't an active transaction, the
|
|
|
|
callback will be executed immediately.
|
|
|
|
|
|
|
|
If that hypothetical database write is instead rolled back (typically when an
|
|
|
|
unhandled exception is raised in an :func:`atomic` block), your function will
|
|
|
|
be discarded and never called.
|
|
|
|
|
|
|
|
Savepoints
|
|
|
|
----------
|
|
|
|
|
|
|
|
Savepoints (i.e. nested :func:`atomic` blocks) are handled correctly. That is,
|
|
|
|
an :func:`on_commit` callable registered after a savepoint (in a nested
|
|
|
|
:func:`atomic` block) will be called after the outer transaction is committed,
|
|
|
|
but not if a rollback to that savepoint or any previous savepoint occurred
|
|
|
|
during the transaction::
|
|
|
|
|
|
|
|
with transaction.atomic(): # Outer atomic, start a new transaction
|
|
|
|
transaction.on_commit(foo)
|
|
|
|
|
|
|
|
with transaction.atomic(): # Inner atomic block, create a savepoint
|
|
|
|
transaction.on_commit(bar)
|
|
|
|
|
|
|
|
# foo() and then bar() will be called when leaving the outermost block
|
|
|
|
|
|
|
|
On the other hand, when a savepoint is rolled back (due to an exception being
|
|
|
|
raised), the inner callable will not be called::
|
|
|
|
|
|
|
|
with transaction.atomic(): # Outer atomic, start a new transaction
|
|
|
|
transaction.on_commit(foo)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with transaction.atomic(): # Inner atomic block, create a savepoint
|
|
|
|
transaction.on_commit(bar)
|
|
|
|
raise SomeError() # Raising an exception - abort the savepoint
|
|
|
|
except SomeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# foo() will be called, but not bar()
|
|
|
|
|
|
|
|
Order of execution
|
|
|
|
------------------
|
|
|
|
|
|
|
|
On-commit functions for a given transaction are executed in the order they were
|
|
|
|
registered.
|
|
|
|
|
|
|
|
Exception handling
|
|
|
|
------------------
|
|
|
|
|
|
|
|
If one on-commit function within a given transaction raises an uncaught
|
|
|
|
exception, no later registered functions in that same transaction will run.
|
|
|
|
This is, of course, the same behavior as if you'd executed the functions
|
|
|
|
sequentially yourself without :func:`on_commit`.
|
|
|
|
|
|
|
|
Timing of execution
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
Your callbacks are executed *after* a successful commit, so a failure in a
|
|
|
|
callback will not cause the transaction to roll back. They are executed
|
|
|
|
conditionally upon the success of the transaction, but they are not *part* of
|
|
|
|
the transaction. For the intended use cases (mail notifications, Celery tasks,
|
|
|
|
etc.), this should be fine. If it's not (if your follow-up action is so
|
|
|
|
critical that its failure should mean the failure of the transaction itself),
|
|
|
|
then you don't want to use the :func:`on_commit` hook. Instead, you may want
|
|
|
|
`two-phase commit`_ such as the `psycopg Two-Phase Commit protocol support`_
|
|
|
|
and the `optional Two-Phase Commit Extensions in the Python DB-API
|
|
|
|
specification`_.
|
|
|
|
|
|
|
|
Callbacks are not run until autocommit is restored on the connection following
|
|
|
|
the commit (because otherwise any queries done in a callback would open an
|
|
|
|
implicit transaction, preventing the connection from going back into autocommit
|
|
|
|
mode).
|
|
|
|
|
|
|
|
When in autocommit mode and outside of an :func:`atomic` block, the function
|
|
|
|
will run immediately, not on commit.
|
|
|
|
|
|
|
|
On-commit functions only work with :ref:`autocommit mode <managing-autocommit>`
|
|
|
|
and the :func:`atomic` (or :setting:`ATOMIC_REQUESTS
|
|
|
|
<DATABASE-ATOMIC_REQUESTS>`) transaction API. Calling :func:`on_commit` when
|
|
|
|
autocommit is disabled and you are not within an atomic block will result in an
|
|
|
|
error.
|
|
|
|
|
2015-08-08 18:02:32 +08:00
|
|
|
.. _two-phase commit: https://en.wikipedia.org/wiki/Two-phase_commit_protocol
|
2015-07-01 00:18:56 +08:00
|
|
|
.. _psycopg Two-Phase Commit protocol support: http://initd.org/psycopg/docs/usage.html#tpc
|
|
|
|
.. _optional Two-Phase Commit Extensions in the Python DB-API specification: https://www.python.org/dev/peps/pep-0249/#optional-two-phase-commit-extensions
|
|
|
|
|
|
|
|
Use in tests
|
|
|
|
------------
|
|
|
|
|
|
|
|
Django's :class:`~django.test.TestCase` class wraps each test in a transaction
|
|
|
|
and rolls back that transaction after each test, in order to provide test
|
|
|
|
isolation. This means that no transaction is ever actually committed, thus your
|
|
|
|
:func:`on_commit` callbacks will never be run. If you need to test the results
|
|
|
|
of an :func:`on_commit` callback, use a
|
|
|
|
:class:`~django.test.TransactionTestCase` instead.
|
|
|
|
|
|
|
|
Why no rollback hook?
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
A rollback hook is harder to implement robustly than a commit hook, since a
|
|
|
|
variety of things can cause an implicit rollback.
|
|
|
|
|
|
|
|
For instance, if your database connection is dropped because your process was
|
|
|
|
killed without a chance to shut down gracefully, your rollback hook will never
|
|
|
|
run.
|
|
|
|
|
|
|
|
The solution is simple: instead of doing something during the atomic block
|
|
|
|
(transaction) and then undoing it if the transaction fails, use
|
|
|
|
:func:`on_commit` to delay doing it in the first place until after the
|
2017-07-18 20:24:49 +08:00
|
|
|
transaction succeeds. It's a lot easier to undo something you never did in the
|
2015-07-01 00:18:56 +08:00
|
|
|
first place!
|
|
|
|
|
2013-03-07 21:42:51 +08:00
|
|
|
Low-level APIs
|
|
|
|
==============
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
Always prefer :func:`atomic` if possible at all. It accounts for the
|
|
|
|
idiosyncrasies of each database and prevents invalid operations.
|
|
|
|
|
|
|
|
The low level APIs are only useful if you're implementing your own
|
|
|
|
transaction management.
|
|
|
|
|
|
|
|
.. _managing-autocommit:
|
|
|
|
|
|
|
|
Autocommit
|
|
|
|
----------
|
|
|
|
|
2013-03-13 21:47:48 +08:00
|
|
|
Django provides a straightforward API in the :mod:`django.db.transaction`
|
|
|
|
module to manage the autocommit state of each database connection.
|
2013-03-07 21:42:51 +08:00
|
|
|
|
|
|
|
.. function:: get_autocommit(using=None)
|
|
|
|
|
2013-03-11 22:10:58 +08:00
|
|
|
.. function:: set_autocommit(autocommit, using=None)
|
2013-03-07 21:42:51 +08:00
|
|
|
|
|
|
|
These functions take a ``using`` argument which should be the name of a
|
|
|
|
database. If it isn't provided, Django uses the ``"default"`` database.
|
|
|
|
|
|
|
|
Autocommit is initially turned on. If you turn it off, it's your
|
|
|
|
responsibility to restore it.
|
|
|
|
|
|
|
|
Once you turn autocommit off, you get the default behavior of your database
|
|
|
|
adapter, and Django won't help you. Although that behavior is specified in
|
|
|
|
:pep:`249`, implementations of adapters aren't always consistent with one
|
|
|
|
another. Review the documentation of the adapter you're using carefully.
|
|
|
|
|
|
|
|
You must ensure that no transaction is active, usually by issuing a
|
|
|
|
:func:`commit` or a :func:`rollback`, before turning autocommit back on.
|
|
|
|
|
2013-03-13 21:08:32 +08:00
|
|
|
Django will refuse to turn autocommit off when an :func:`atomic` block is
|
|
|
|
active, because that would break atomicity.
|
2013-03-07 21:42:51 +08:00
|
|
|
|
|
|
|
Transactions
|
|
|
|
------------
|
|
|
|
|
|
|
|
A transaction is an atomic set of database queries. Even if your program
|
|
|
|
crashes, the database guarantees that either all the changes will be applied,
|
|
|
|
or none of them.
|
|
|
|
|
|
|
|
Django doesn't provide an API to start a transaction. The expected way to
|
|
|
|
start a transaction is to disable autocommit with :func:`set_autocommit`.
|
|
|
|
|
|
|
|
Once you're in a transaction, you can choose either to apply the changes
|
|
|
|
you've performed until this point with :func:`commit`, or to cancel them with
|
2013-03-13 21:47:48 +08:00
|
|
|
:func:`rollback`. These functions are defined in :mod:`django.db.transaction`.
|
2013-03-07 21:42:51 +08:00
|
|
|
|
|
|
|
.. function:: commit(using=None)
|
|
|
|
|
|
|
|
.. function:: rollback(using=None)
|
|
|
|
|
|
|
|
These functions take a ``using`` argument which should be the name of a
|
|
|
|
database. If it isn't provided, Django uses the ``"default"`` database.
|
|
|
|
|
|
|
|
Django will refuse to commit or to rollback when an :func:`atomic` block is
|
|
|
|
active, because that would break atomicity.
|
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
.. _topics-db-transactions-savepoints:
|
2011-02-12 21:03:34 +08:00
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
Savepoints
|
2013-03-07 21:42:51 +08:00
|
|
|
----------
|
2010-10-20 03:38:15 +08:00
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
A savepoint is a marker within a transaction that enables you to roll back
|
|
|
|
part of a transaction, rather than the full transaction. Savepoints are
|
|
|
|
available with the SQLite (≥ 3.6.8), PostgreSQL, Oracle and MySQL (when using
|
|
|
|
the InnoDB storage engine) backends. Other backends provide the savepoint
|
|
|
|
functions, but they're empty operations -- they don't actually do anything.
|
2010-10-20 03:38:15 +08:00
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
Savepoints aren't especially useful if you are using autocommit, the default
|
|
|
|
behavior of Django. However, once you open a transaction with :func:`atomic`,
|
|
|
|
you build up a series of database operations awaiting a commit or rollback. If
|
|
|
|
you issue a rollback, the entire transaction is rolled back. Savepoints
|
|
|
|
provide the ability to perform a fine-grained rollback, rather than the full
|
|
|
|
rollback that would be performed by ``transaction.rollback()``.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2014-03-24 23:42:56 +08:00
|
|
|
When the :func:`atomic` decorator is nested, it creates a savepoint to allow
|
|
|
|
partial commit or rollback. You're strongly encouraged to use :func:`atomic`
|
|
|
|
rather than the functions described below, but they're still part of the
|
|
|
|
public API, and there's no plan to deprecate them.
|
2009-03-11 15:06:50 +08:00
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
Each of these functions takes a ``using`` argument which should be the name of
|
|
|
|
a database for which the behavior applies. If no ``using`` argument is
|
|
|
|
provided then the ``"default"`` database is used.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-07 21:05:32 +08:00
|
|
|
Savepoints are controlled by three functions in :mod:`django.db.transaction`:
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-07 21:05:32 +08:00
|
|
|
.. function:: savepoint(using=None)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-13 21:47:48 +08:00
|
|
|
Creates a new savepoint. This marks a point in the transaction that is
|
|
|
|
known to be in a "good" state. Returns the savepoint ID (``sid``).
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2013-03-07 21:05:32 +08:00
|
|
|
.. function:: savepoint_commit(sid, using=None)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-07 21:05:32 +08:00
|
|
|
Releases savepoint ``sid``. The changes performed since the savepoint was
|
|
|
|
created become part of the transaction.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-07 21:05:32 +08:00
|
|
|
.. function:: savepoint_rollback(sid, using=None)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-07 21:05:32 +08:00
|
|
|
Rolls back the transaction to savepoint ``sid``.
|
|
|
|
|
|
|
|
These functions do nothing if savepoints aren't supported or if the database
|
|
|
|
is in autocommit mode.
|
|
|
|
|
|
|
|
In addition, there's a utility function:
|
|
|
|
|
|
|
|
.. function:: clean_savepoints(using=None)
|
|
|
|
|
|
|
|
Resets the counter used to generate unique savepoint IDs.
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
The following example demonstrates the use of savepoints::
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
from django.db import transaction
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
# open a transaction
|
|
|
|
@transaction.atomic
|
|
|
|
def viewfunc(request):
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-25 13:53:48 +08:00
|
|
|
a.save()
|
|
|
|
# transaction now contains a.save()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-25 13:53:48 +08:00
|
|
|
sid = transaction.savepoint()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-25 13:53:48 +08:00
|
|
|
b.save()
|
|
|
|
# transaction now contains a.save() and b.save()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-03-25 13:53:48 +08:00
|
|
|
if want_to_keep_b:
|
|
|
|
transaction.savepoint_commit(sid)
|
|
|
|
# open transaction still contains a.save() and b.save()
|
|
|
|
else:
|
|
|
|
transaction.savepoint_rollback(sid)
|
|
|
|
# open transaction now contains only a.save()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-06-28 04:19:54 +08:00
|
|
|
Savepoints may be used to recover from a database error by performing a partial
|
|
|
|
rollback. If you're doing this inside an :func:`atomic` block, the entire block
|
|
|
|
will still be rolled back, because it doesn't know you've handled the situation
|
|
|
|
at a lower level! To prevent this, you can control the rollback behavior with
|
|
|
|
the following functions.
|
|
|
|
|
|
|
|
.. function:: get_rollback(using=None)
|
|
|
|
|
|
|
|
.. function:: set_rollback(rollback, using=None)
|
|
|
|
|
|
|
|
Setting the rollback flag to ``True`` forces a rollback when exiting the
|
|
|
|
innermost atomic block. This may be useful to trigger a rollback without
|
|
|
|
raising an exception.
|
|
|
|
|
|
|
|
Setting it to ``False`` prevents such a rollback. Before doing that, make sure
|
|
|
|
you've rolled back the transaction to a known-good savepoint within the current
|
|
|
|
atomic block! Otherwise you're breaking atomicity and data corruption may
|
|
|
|
occur.
|
|
|
|
|
2013-03-03 22:55:11 +08:00
|
|
|
Database-specific notes
|
|
|
|
=======================
|
|
|
|
|
2013-03-24 20:08:29 +08:00
|
|
|
.. _savepoints-in-sqlite:
|
|
|
|
|
2013-03-04 22:57:04 +08:00
|
|
|
Savepoints in SQLite
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
While SQLite ≥ 3.6.8 supports savepoints, a flaw in the design of the
|
2013-03-24 20:08:29 +08:00
|
|
|
:mod:`sqlite3` module makes them hardly usable.
|
2013-03-04 22:57:04 +08:00
|
|
|
|
|
|
|
When autocommit is enabled, savepoints don't make sense. When it's disabled,
|
2013-03-13 21:47:48 +08:00
|
|
|
:mod:`sqlite3` commits implicitly before savepoint statements. (In fact, it
|
2013-03-04 22:57:04 +08:00
|
|
|
commits before any statement other than ``SELECT``, ``INSERT``, ``UPDATE``,
|
2013-03-13 21:47:48 +08:00
|
|
|
``DELETE`` and ``REPLACE``.) This bug has two consequences:
|
2013-03-13 21:08:32 +08:00
|
|
|
|
|
|
|
- The low level APIs for savepoints are only usable inside a transaction ie.
|
|
|
|
inside an :func:`atomic` block.
|
|
|
|
- It's impossible to use :func:`atomic` when autocommit is turned off.
|
2013-03-04 22:57:04 +08:00
|
|
|
|
2006-07-24 10:39:50 +08:00
|
|
|
Transactions in MySQL
|
2013-03-03 22:55:11 +08:00
|
|
|
---------------------
|
2006-07-24 10:39:50 +08:00
|
|
|
|
|
|
|
If you're using MySQL, your tables may or may not support transactions; it
|
|
|
|
depends on your MySQL version and the table types you're using. (By
|
|
|
|
"table types," we mean something like "InnoDB" or "MyISAM".) MySQL transaction
|
|
|
|
peculiarities are outside the scope of this article, but the MySQL site has
|
|
|
|
`information on MySQL transactions`_.
|
|
|
|
|
2013-03-13 21:47:48 +08:00
|
|
|
If your MySQL setup does *not* support transactions, then Django will always
|
|
|
|
function in autocommit mode: statements will be executed and committed as soon
|
|
|
|
as they're called. If your MySQL setup *does* support transactions, Django
|
|
|
|
will handle transactions as explained in this document.
|
2006-07-24 10:39:50 +08:00
|
|
|
|
2016-09-30 20:58:59 +08:00
|
|
|
.. _information on MySQL transactions: https://dev.mysql.com/doc/refman/en/sql-syntax-transactions.html
|
2009-05-02 15:40:25 +08:00
|
|
|
|
2009-05-16 14:23:06 +08:00
|
|
|
Handling exceptions within PostgreSQL transactions
|
2013-03-03 22:55:11 +08:00
|
|
|
--------------------------------------------------
|
2009-05-02 15:40:25 +08:00
|
|
|
|
2013-03-13 21:47:48 +08:00
|
|
|
.. note::
|
2013-03-26 08:56:52 +08:00
|
|
|
|
2013-03-13 21:47:48 +08:00
|
|
|
This section is relevant only if you're implementing your own transaction
|
|
|
|
management. This problem cannot occur in Django's default mode and
|
|
|
|
:func:`atomic` handles it automatically.
|
|
|
|
|
|
|
|
Inside a transaction, when a call to a PostgreSQL cursor raises an exception
|
|
|
|
(typically ``IntegrityError``), all subsequent SQL in the same transaction
|
|
|
|
will fail with the error "current transaction is aborted, queries ignored
|
2016-01-01 03:29:52 +08:00
|
|
|
until end of transaction block". While simple use of ``save()`` is unlikely
|
2013-03-13 21:47:48 +08:00
|
|
|
to raise an exception in PostgreSQL, there are more advanced usage patterns
|
|
|
|
which might, such as saving objects with unique fields, saving using the
|
2009-05-16 14:23:06 +08:00
|
|
|
force_insert/force_update flag, or invoking custom SQL.
|
2009-05-02 15:40:25 +08:00
|
|
|
|
2009-05-16 14:23:06 +08:00
|
|
|
There are several ways to recover from this sort of error.
|
2009-05-02 15:40:25 +08:00
|
|
|
|
2009-05-16 14:23:06 +08:00
|
|
|
Transaction rollback
|
2013-03-03 22:55:11 +08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
2009-05-16 14:23:06 +08:00
|
|
|
|
|
|
|
The first option is to roll back the entire transaction. For example::
|
|
|
|
|
|
|
|
a.save() # Succeeds, but may be undone by transaction rollback
|
2009-05-02 15:40:25 +08:00
|
|
|
try:
|
2009-05-16 14:23:06 +08:00
|
|
|
b.save() # Could throw exception
|
2009-05-02 15:40:25 +08:00
|
|
|
except IntegrityError:
|
2009-05-16 14:23:06 +08:00
|
|
|
transaction.rollback()
|
|
|
|
c.save() # Succeeds, but a.save() may have been undone
|
|
|
|
|
|
|
|
Calling ``transaction.rollback()`` rolls back the entire transaction. Any
|
|
|
|
uncommitted database operations will be lost. In this example, the changes
|
|
|
|
made by ``a.save()`` would be lost, even though that operation raised no error
|
|
|
|
itself.
|
|
|
|
|
|
|
|
Savepoint rollback
|
2013-03-03 22:55:11 +08:00
|
|
|
~~~~~~~~~~~~~~~~~~
|
2009-05-16 14:23:06 +08:00
|
|
|
|
2013-03-04 22:57:04 +08:00
|
|
|
You can use :ref:`savepoints <topics-db-transactions-savepoints>` to control
|
|
|
|
the extent of a rollback. Before performing a database operation that could
|
|
|
|
fail, you can set or update the savepoint; that way, if the operation fails,
|
|
|
|
you can roll back the single offending operation, rather than the entire
|
|
|
|
transaction. For example::
|
2009-05-16 14:23:06 +08:00
|
|
|
|
|
|
|
a.save() # Succeeds, and never undone by savepoint rollback
|
2014-12-21 04:02:26 +08:00
|
|
|
sid = transaction.savepoint()
|
2009-05-16 14:23:06 +08:00
|
|
|
try:
|
|
|
|
b.save() # Could throw exception
|
|
|
|
transaction.savepoint_commit(sid)
|
|
|
|
except IntegrityError:
|
|
|
|
transaction.savepoint_rollback(sid)
|
|
|
|
c.save() # Succeeds, and a.save() is never undone
|
|
|
|
|
|
|
|
In this example, ``a.save()`` will not be undone in the case where
|
|
|
|
``b.save()`` raises an exception.
|