I have a large CSV file, approx 10 MB in size, which contains all the data which need to be imported in the Google App Engine DataStore.
I tried following approaches to perform import but all the times it failed in half way.
- Import using mapping a command to url and then executing url, failed because of request time out…
- Import using creating cron job, but got DeadlineExceededError…
- Import using remort_api_shell, but got Operation timed out.
Can you please suggest me and approch (using dummy data you can imagine) how to do it… Suggestion with code will be more helpful..
** I am using Python and google’s web app framework to develop the said app.
you can post row by row. using built in bulk loader.
http://code.google.com/appengine/docs/python/tools/uploadingdata.html
this is good article.
and here is my contactloader.py that i used 2 years ago for reference. it is more sophisticated since last i used but still…..