AppEngine bulk loader, highly replicated repository and python27 runtime

Can someone clarify the situation here?

I used Bulkloader with Python25 and old / main subordinate databases.

I also used it (to load only data) with Python25 and a highly replicated data store, despite what it says here:

http://code.google.com/appengine/docs/python/tools/uploadingdata.html

This document is for applications using the master / slave data warehouse. If your application uses a high replication data warehouse, you can copy data from the application, but Google does not currently support this use case.

However, now I am trying to load a Bulkloader with a high replication data storage and Python27, and it seems to be irrevocably broken. Actually, this looks like an authentication step, although I am passing my appcfg.py email address appcfg.py

Has anyone else tried this? Can anyone confirm which Bulkloader components will work / will not work?

+43
python google-app-engine
Dec 11 '11 at 20:15
source share
2 answers

It looks like you had the remote_api handler specified in the python25 app.yaml , but not the python27 version.

You need to run the python27 version with threadsafe: False [or] appengine will complain about the CGI style handler. "

Please answer the question, not just comment the next time.

+2
Nov 06 '15 at 4:17
source share

I had a similar problem. I downgraded 1.27 from GAELauncher to 1.26, and authentication started working again.

Workaround: Go to https://console.developers.google.com/storage/browser/appengine-sdks/featured/ to get version 1.9.26

Sent error report: https://code.google.com/p/google-cloud-sdk/issues/detail?id=340

0
Nov 06 '15 at 23:54
source share



All Articles