从数据存储下载数据

发布于 2024-12-23 17:34:59 字数 1478 浏览 0 评论 0原文

我想下载在线应用程序数据存储区中的数据,我按照 code.google 上的指南,我将其添加到我的 app.yaml 文件中

builtins:
- remote_api: on

,但是当我使用 appcfg.py update src 进行更新并调用此名称时:

appcfg.py download_data --application=myapp --url=http://myapp.appspot.com/remote_api_path --filename=first-test-backup`

我得到了身份验证错误,与此处提到的情况几乎相同,所以我尝试将其放在

- url: /remote_api 
  script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py 
  login: admin 

任何捕获所有处理程序之前,但随后出现此错误:threadsafe无法使用CGI启用当我尝试更新时,处理程序,因此根据此讨论< /a>,我将其替换为:

    - url: /remote_api 
  script: google.appengine.ext.remote_api.handler.application 
  login: admin 

这再次给了我身份验证错误,我还尝试添加 ('/remote_api', google.appengine.ext.remote_api.handler)app = webapp2.WSGIApplication,但是身份验证错误仍然存​​在。

我使用高复制数据存储区,但根据 code.google 唯一的缺点是我可能无法获得最新的数据。

我如何下载我的数据?

I wanted to download the data on my online app's datastore, I followed the guide on code.google, I added this to my app.yaml file

builtins:
- remote_api: on

But when I updated using appcfg.py update src and called this:

appcfg.py download_data --application=myapp --url=http://myapp.appspot.com/remote_api_path --filename=first-test-backup`

I got an Authentication error, pretty much the same case mentioned here, so I tried putting this:

- url: /remote_api 
  script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py 
  login: admin 

before any catch-all handlers, but then got this error: threadsafe cannot be enabled with CGI handler when I tried to update, so according to this discussion, I replaced it by:

    - url: /remote_api 
  script: google.appengine.ext.remote_api.handler.application 
  login: admin 

Which gave me again the authentication error, I also tried adding ('/remote_api', google.appengine.ext.remote_api.handler) to app = webapp2.WSGIApplication, however still the authentication error persists.

I use a High Replication datastore, but according to code.google the only drawback is that I might not get the latest data.

How can I download my data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆那么伤 2024-12-30 17:34:59

试试这个:

builtins:
- remote_api: on

对于

appcfg.py download_data --application=~myapp --url=http://myapp.appspot.com/_ah/remote_api --filename=first-test-backup

url 中的 url Atttention _ahhttp://myapp.appspot.com/_ah/remote_api

Try this:

builtins:
- remote_api: on

And for url

appcfg.py download_data --application=~myapp --url=http://myapp.appspot.com/_ah/remote_api --filename=first-test-backup

Atttention _ah in url: http://myapp.appspot.com/_ah/remote_api

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文