Hello.
I have a JSON file that I've built for loading via Django_import_export.
It works fine, but I want to tread much more carefully, as I can only push about 500 rows at a time--I think the Django instance is yielding (which is fine; I'm a free user just testing this out for now).
Would a mysqlimport of an uploaded CSV file be lighter? It seems so, as it'll just involve the MySQL process, but I'd really like to tread lightly and optimize the data load if I can. 5 columns of data are in use, and it is sparse.
I'd appreciate any feedback or comments anyone would have!