OK, I got it to upload to my local development server using the following command:
appcfg.py upload_data --url=http://localhost:8080/_ah/remote_api -- application=dev~myapp --filename=myapp_data_backup.csv -- num_threads=5 NOTES: Even though the docs say DO NOT use the --application tag, the only way to get this to work was to use it, with the dev~ prefix. Also, I had to add the --num_threads=5 tag to stop a "broken pipe" error. I have a very fast CPU with many cores, but evidently was getting some thread collisions. Throttling back to --num_threads=5 (instead of the default 10) seemed to be the only way to fix it. Hope that helps someone. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
