1.6.5 release notes says that we can schedule backups using cron. Looking at the code, it seems that the url to do so is:
http://[appid].appspot.com/_ah/datastore_admin/backup.create However, this gives a 404. So, next I'm guessing that I need to add the following to app.yaml: builtins: - datastore_admin: on But that gives an error on appcfg.py update. Looking at the code some more reveals: BUILTINS_NOT_AVAIABLE_IN_PYTHON27 = set(['datastore_admin', 'mapreduce']) Am I missing something? Should I be able to run scheduled backups under Python 2.7 in SDK 1.6.5? -- 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.
