50đź‘Ť
As someone who recently switched a project from MySQL to Postgresql I don’t regret the switch.
The main difference, from a Django point of view, is more rigorous constraint checking in Postgresql, which is a good thing, and also it’s a bit more tedious to do manual schema changes (aka migrations).
There are probably 6 or so Django database migration applications out there and at least one doesn’t support Postgresql. I don’t consider this a disadvantage though because you can use one of the others or do them manually (which is what I prefer atm).
Full text search might be better supported for MySQL. MySQL has built-in full text search supported from within Django but it’s pretty useless (no word stemming, phrase searching, etc.). I’ve used django-sphinx as a better option for full text searching in MySQL.
Full text searching is built-in with Postgresql 8.3 (earlier versions need TSearch module). Here’s a good instructional blog post: Full-text searching in Django with PostgreSQL and tsearch2
72đź‘Ť
For whatever it’s worth the the creators of Django recommend PostgreSQL.
If you’re not tied to any legacy
system and have the freedom to choose
a database back-end, we recommend
PostgreSQL, which achives a fine
balance between cost, features, speed
and stability. (The Definitive Guide to Django, p. 15)
- [Django]-React Error: Target Container is not a DOM Element
- [Django]-ImportError: cannot import name '…' from partially initialized module '…' (most likely due to a circular import)
- [Django]-Gunicorn Connection in Use: ('0.0.0.0', 5000)
42đź‘Ť
large database with several hundred
thousand entries,
This is not large database, it’s very small one.
I’d choose PostgreSQL, because it has a lot more features. Most significant it this case: in PostgreSQL you can use Python as procedural language.
- [Django]-Why is factory_boy superior to using the ORM directly in tests?
- [Django]-"<Message: title>" needs to have a value for field "id" before this many-to-many relationship can be used.
- [Django]-Django: Get list of model fields?
11đź‘Ť
Go with whichever you’re more familiar with. MySQL vs PostgreSQL is an endless war. Both of them are excellent database engines and both are being used by major sites. It really doesn’t matter in practice.
- [Django]-Using JSON in django template
- [Django]-Django post_save() signal implementation
- [Django]-Django queryset filter – Q() | VS __in
9đź‘Ť
All the answers bring interesting information to the table, but some are a little outdated, so here’s my grain of salt.
As of 1.7, migrations are now an integral feature of Django. So they documented the main differences that Django developers might want to know beforehand.
Backend Support
Migrations are supported on all backends that Django ships with, as
well as any third-party backends if they have programmed in support
for schema alteration (done via the SchemaEditor class).However, some databases are more capable than others when it comes to schema migrations; some of the caveats are covered below.
PostgreSQL
PostgreSQL is the most capable of all the databases here in terms of schema support.
MySQL
MySQL lacks support for transactions around schema alteration operations, meaning that if a migration fails to apply you will have to manually unpick the changes in order to try again (it’s impossible to roll back to an earlier point).
In addition, MySQL will fully rewrite tables for almost every schema operation and generally takes a time proportional to the number of rows in the table to add or remove columns. On slower hardware this can be worse than a minute per million rows – adding a few columns to a table with just a few million rows could lock your site up for over ten minutes.
Finally, MySQL has relatively small limits on name lengths for columns, tables and indexes, as well as a limit on the combined size of all columns an index covers. This means that indexes that are possible on other backends will fail to be created under MySQL.
SQLite
SQLite has very little built-in schema alteration support, and so
Django attempts to emulate it by:
- Creating a new table with the new schema
- Copying the data across
- Dropping the old table
- Renaming the new table to match the original name
This process generally works well, but it can be slow and occasionally
buggy. It is not recommended that you run and migrate SQLite in a
production environment unless you are very aware of the risks and its
limitations; the support Django ships with is designed to allow
developers to use SQLite on their local machines to develop less
complex Django projects without the need for a full database.
- [Django]-Allowing only super user login
- [Django]-How do I render jinja2 output to a file in Python instead of a Browser
- [Django]-Python/Django: log to console under runserver, log to file under Apache
8đź‘Ť
Even if Postgresql looks better, I find it has some performances issues with Django:
Postgresql is made to handle “long connections” (connection pooling, persistant connections, etc.)
MySQL is made to handle “short connections” (connect, do your queries, disconnect, has some performances issues with a lot of open connections)
The problem is that Django does not support connection pooling or persistant connection, it has to connect/disconnect to the database at each view call.
It will works with Postgresql, but connecting to a Postgresql cost a LOT more than connecting to a MySQL database (On Postgresql, each connection has it own process, it’s a lot slower than just popping a new thread in MySQL).
Then you get some features like the Query Cache that can be really useful on some cases. (But you lost the superb text search of PostgreSQL)
- [Django]-Does django with mongodb make migrations a thing of the past?
- [Django]-How to strip html/javascript from text input in django
- [Django]-How to use "get_or_create()" in Django?
4đź‘Ť
When a migration fails in django-south, the developers encourage you not to use MySQL:
! The South developers regret this has happened, and would
! like to gently persuade you to consider a slightly
! easier-to-deal-with DBMS (one that supports DDL transactions)
- [Django]-Django: Multiple forms possible when using FormView?
- [Django]-How to get the ID of a just created record in Django?
- [Django]-Django, creating a custom 500/404 error page
4đź‘Ť
Having gone down the road of MySQL because I was familiar with it (and struggling to find a proper installer and a quick test of the slow web "workbench" interface of postgreSQL put me off), at the end of the project, after a few months after deployment, while looking into back up options, I see you have to pay for MySQL’s enterprise back up features. Gotcha right at the very end.
With MySql I had to write some ugly monster raw SQL queries in Django because no select distinct per group for retrieving the latest per group query. Also looking at postgreSQL’s full-text search and wishing I had used postgresSQL.
I recommend PostgreSQL even if you are familiar with MySQL, but your mileage may vary.
UPDATE: DBeaver
is a great equivalent of MySql Workbench
gui tool but works with PostgreSQL very nicely (and many others as its a universal DB tool).
- [Django]-How do Django models work?
- [Django]-How to set environment variables in PyCharm?
- [Django]-Is it possible to generate django models from the database?
2đź‘Ť
To add to previous answers :
- “Full text search might be better supported for MySQL”
The FULLTEXT index in MySQL is a joke.
- It only works with MyISAM tables, so you lose ACID, Transactions, Constraints, Relations, Durability, Concurrency, etc.
- INSERT/UPDATE/DELETE to a largish TEXT column (like a forum post) will a rebuild a large part of the index. If it does not fit in myisam_key_buffer, then large IO will occur. I’ve seen a single forum post insertion trigger 100MB or more of IO … meanwhile the posts table is exclusiely locked !
- I did some benchmarking (3 years ago, may be stale…) which showed that on large datasets, basically postgres fulltext is 10-100x faster than mysql, and Xapian 10-100x faster than postgres (but not integrated).
Other reasons not mentioned are the extremely smart query optimizer, large choice of join types (merge, hash, etc), hash aggregation, gist indexes on arrays, spatial search, etc which can result in extremely fast plans on very complicated queries.
- [Django]-How can I save my secret keys and password securely in my version control system?
- [Django]-Using {% url ??? %} in django templates
- [Django]-Django-allauth: Linking multiple social accounts to a single user
0đź‘Ť
There is a major licensing difference between the two db that will affect you if you ever intend to distribute code using the db. MySQL’s client libraries are GPL and PostegreSQL’s is under a BSD like license which might be easier to work with.
- [Django]-What does on_delete do on Django models?
- [Django]-Many-To-Many Fields View on Django Admin
- [Django]-Create empty queryset by default in django form fields