tags:

views:

12

answers:

1

I'm trying to load a large dataset of about 76K entries from a JSON file generated by the dumpdata command and after a while the process exits with only "Killed" as error message ..

What do ?

No I can split the dataset by app .. all the heavy data is contained within a single table.

A: 

The problem is that resource limits are killing the load before it's complete. If you can access the database remotely then you can set up the Django project on a local machine pointed at the remote database, and perform the loaddata there.

Ignacio Vazquez-Abrams