I\'m planning to upload a billion records taken from ~750 files (each ~250MB) to a db using django\'s ORM. Currently each file takes ~20min to process, and I was wondering i
Drop to DB-API and use cursor.executemany(). See PEP 249 for details.
cursor.executemany()