I made a dump of my db using dumpdata and it created a 500mb json file
now I am trying to use loaddata to restore the db, but seems like Django tries to load the entire file into memory before applying it and i get an out of memory error and the process is killed.
Isn't there a way to bypass this problem?
I'd like to add that I was quite successful in a similar use-case with ijson: https://github.com/isagalaev/ijson
In order to get an iterator over the objects in a json file from django dumpdata, I modified the json Deserializer like this (imports elided):
The problem with using py-yajl as-is is that you still get all the objects in one large array, which uses a lot of memory. This loop only uses as much memory as a single serialized Django object. Also ijson can still use yajl as a backend.
loaddata
is generally use for fixtures, i.e. a small number of database objects to get your system started and for tests rather than for large chunks of data. If you're hitting memory limits then you're probably not using it for the right purpose.If you still have the original database, you should use something more suited to the purpose, like PostgreSQL's
pg_dump
or MySQL'smysqldump
.I ran into this problem migrating data from a Microsoft SQL Server to PostgreSQL, so
sqldump
andpg_dump
weren't an option for me. I split my json fixtures into chunks that would fit in memory (about 1M rows for a wide table and 64GB ram).You can then load them with
manage.py loaddata <app_name>--<model_name>*.json
. But in my case I had to firstsed
the files to change the model and app names so they'd load to the right database. I also nulled the pk because I'd changed the pk to be anAutoField
(best practice for django).You might find pug useful. It's a FOSS python package of similarly hacky tools for handling large migration and data mining tasks in django.
As Joe pointed out, PostgreSQL's pg_dump or MySQL's mysqldump is more suited in your case.
In case you have lost your original database, there are 2 ways you could try to get your data back:
One: Find another machine, that have more memory and can access to your database. Build your project on that machine, and run the loaddata command on that machine.
I know it sounds silly. But it is the quickest way if your can run django on your laptop and can connect to the db remotely.
Two: Hack the Django source code.
Check the code in django.core.erializers.json.py:
The code below is the problem. The
json
module in the stdlib only accepts string, and cant not handle stream lazily. So django load all the content of a json file into the memory.You could optimize those code with py-yajl. py-yajl creates an alternative to the built in json.loads and json.dumps using yajl.