I am working in Google App Engine and we have a Python script that dumps data in Google Cloud SQL. One of the data sets we have to dump is huge. We dump around 150K rows of data once a day daily.
I know Google Cloud SQL does not support LOAD DATA INFILE
, which I would have normally used. My question is, whether there is an alternative to LOAD DATA INFILE
that I can use to speed up the process of data dumping.
Inserting the data normally, without LOAD DATA INFILE
, takes about 5 minutes.