如何使用 Google App Engine 批量加载程序来备份我的所有数据?
文档说,
appcfg.py --dump --app_id=<app-id> \
--url=http://<appname>.appspot.com/remote_api \
--filename=<data-filename>
事情本身在呕吐:
Usage: appcfg.py [options] <action>
appcfg.py: error: no such option: --dump
$ cat /usr/local/share/google_appengine/VERSION
release: "1.3.4"
有什么想法?
The docs say
appcfg.py --dump --app_id=<app-id> \
--url=http://<appname>.appspot.com/remote_api \
--filename=<data-filename>
The thing itself barfs:
Usage: appcfg.py [options] <action>
appcfg.py: error: no such option: --dump
$ cat /usr/local/share/google_appengine/VERSION
release: "1.3.4"
Thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现我必须使用 download_data 而不是 --dump 和 --application 而不是 --app_id,例如:
I found that I had to use download_data instead of --dump and --application instead of --app_id, for example:
您是否可能安装了两个版本的应用程序引擎?一个位于您的 python 路径(不同版本的 appengine)中,另一个位于 /usr/local/share/google_appengine/VERSION 目录(报告 1.3.4)
Is it possible that you have two versions of app engine installed; one on your python path (a different version of appengine) and one in the /usr/local/share/google_appengine/VERSION directory (which reports 1.3.4)