utils strong like ironegg
Project description
patch_for_django_orm
# ===========
# Background:
Django's ORM establishes a database connection per thread.
For the threads managed by Django (which are supposed to be used for directly
handing web requests), Django ORM cleans the established connections up under
the hood once the processing on the thread completes (= request_finished signal).
On the other hand, in the case where Django ORM models are used in an unmanaged thread,
Django does not handle the cleanup of the connections bound to the thread although the
Django framework automatically associates a new connection to the thread.
This half-maintained resource possibly can cause some DB connection related issues.
To learn more details of this Django behavior, checking the following ticket
is helpful for understanding this:
https://code.djangoproject.com/ticket/9878
# =========
# Solution:
First replace django orm's mysql database engine by SQLAlchemy connection pool,
Then we need to add put-connection-back-into-pool action when user thread is finished.
To implement above two features in django in a beautiful way, I make this patch.
If any suggestions, please contact xing.yang@intel.com.
Let's make django more beautiful.
# ===============
# What To Patch ?
patch threading.Thread.
start
run
patch django.db.backends.mysql.base.
Database
DatabaseWrapper.get_new_connection
# ===============
# Tested versions
python = 3.7/2.7
django = 3.2/1.9
sqlalchemy = 1.4
pymysql = 1.0.2 (python3)
MySQL-python = 1.2.5 (python2)
mysql = 5.7
uwsgi = 2.0
# ====
# Todo
Now this patch is only for mysql database in django,
PostgreSQL and other databases will be supported later.
And only patch threading module in python2/3,
If you use old thread/_thread module to create thread, no patch.
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
ironegg-1.0.7.tar.gz
(3.3 kB
view details)
File details
Details for the file ironegg-1.0.7.tar.gz
.
File metadata
- Download URL: ironegg-1.0.7.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8721893908be055b5796ebca49a156abc9176f298e5fd755d5ac1fe5d19f586 |
|
MD5 | 00c3075ccd07a6aa6f9d2f2c0002ddad |
|
BLAKE2b-256 | 3b9bc103f01d955d65ff5da9cf8da53295011e99b586ae9f2ba0a30718afd1df |