Transaction signals for Django. Don't use this!
Project description
tl;dr
For the common use case of running code after the current transaction is successfully committed, use django-transaction-hooks. It has some rough edges, but it’s sane.
Why?
Django doesn’t provide transaction signals because they’re a bad idea. Some of the reasons will be apparent in the “Limitations” paragraph below. Other reasons can be found in ticket 14051 and on the django-developers mailing list. However, I’m fed up with having this argument. People will shoot themselves into the foot anyway.
This package will help you experience the problems of transaction signals first-hand.
Use it at your own risk. I wouldn’t.
How?
Add 'transaction_signals' to your INSTALLED_APPS setting.
This will monkey-patch Django’s transaction management features.
You can then register receivers for transaction signals:
from django.dispatch import receiver from transaction_signals import post_commit @receiver(post_commit) def print_commits(sender, **kwargs): print("COMMIT on %s" % sender)
Signals
Signals are available in the transaction_signals package. Their semantics are obvious, except when they aren’t.
Connection signals:
pre_open
post_open
pre_close
post_close
Autocommit signals:
pre_set_autocommit
post_set_autocommit
Transaction signals:
pre_commit
post_commit
pre_rollback
post_rollback
Savepoint signals:
pre_savepoint
post_savepoint
pre_savepoint_commit
post_savepoint_commit
pre_savepoint_rollback
post_savepoint_rollback
sender is the alias of the database connection e.g. 'default'. All signals pass the database connection in the 'connection' argument. Furthermore, pre/post_open provide a conn_params argument, pre/post_set_autocommit provide autocommit, and pre/post_savepoint/_commit/_rollback provide savepoint_id.
Limitations
You cannot assume that pre/post_commit are sent whenever changes are committed. Signals aren’t sent when the connection is in autocommit mode, which is the default.
You cannot assume that pre/post_rollback are sent whenever changes are cancelled. Closing the connection to the database triggers an implicit rollback.
You cannot assume that pre/post_close are sent whenever an implicit rollback happens. Losing the connection to the database also triggers an implicit rollback.
After pre/post_savepoint is sent, you cannot assume that either pre/post_savepoint_commit or pre/post_savepoint_rollback will be sent with the same savepoint_id. The savepoint may be released or rolled back together with an earlier savepoint or the entire transaction.
You cannot use pre/post_set_autocommit on SQLite. The sqlite3 module doesn’t work in non-autocommit mode.
You cannot use pre/post_savepoint_commit on Oracle, MSSQL, or any other database that doesn’t support releasing savepoints.
This is only the tip of the iceberg. I cannot recommend you use this package if you learnt anything in this section. In fact, I cannot recommend it at all.
Alternatives
Fortunately, if you want to add custom logic to Django’s transaction handling, you have several alternatives. They’re much less likely to result in anger, facepalms, insanity, loss of self-esteem, and other regrettable side effects.
You may put your custom logic:
In a middleware, if you only care about transactions tied to requests when ATOMIC_REQUESTS is enabled.
In a decorator that wraps atomic, if you have more advanced needs, especially if you want to track partial commits and rollbacks.
In a database backend, if you want tight control over database operations. Since there’s no public API, you’ll have to read the source and figure out how Django works, rather than blindly hooking to signals that may or may not be sent. django-transaction-hooks uses this technique.
License
This package is released under a dual license: WTFPLv2 and GPLv2.
The distribution only includes the WTFPLv2 because the GPLv2 is too long.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-transaction-signals-do-not-use-1.0.tar.gz
.
File metadata
- Download URL: django-transaction-signals-do-not-use-1.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6ba25e2069b6a049cf10e766b990c479709d37614ff22d528078534877ba11e |
|
MD5 | a9f912d145b52c8cce0994612f47afa0 |
|
BLAKE2b-256 | 24485c6ade056f6396ffb82a891014f8a8feb4660346df6ae3b774fa78cceafa |
File details
Details for the file django_transaction_signals_do_not_use-1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_transaction_signals_do_not_use-1.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cffb535650ee3b2f8a349ba74501f1322ed0c52f62f4d937fbb7941d01ea6b57 |
|
MD5 | 6a53a385a52333fb5e824b6aa415e854 |
|
BLAKE2b-256 | 7ddb3381317c919d886e028fb07fbbf0f0d3d58ce5bee24f2f45cd669b94b9b0 |