Search code examples
google-app-enginebackupbulkloader

How can I use the Google App engine bulkloader to back up all my data?


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?


Solution

  • I found that I had to use download_data instead of --dump and --application instead of --app_id, for example:

     appcfg.py download_data --application=app_id --url=http://etc --filename=file