I'm currently using the --kind parameter to specify which kind to download and the --filename to specify the name of the csv file to produce. The --rps_limit, --bandwidth_limit and --batch_size are used to speed up the download.

For example, to download my Game kind I'm using:

appcfg.py download_data --config_file=bulkloader.yaml --kind=Game --filename=game.csv --application=MyAppId --url=http://MyAppId.appspot.com/remote_api --rps_limit=500 --bandwidth_limit=2500000 --batch_size=100

So is there an appcfg.py command to download the entire datastore without being kind specific to one csv file?

Thanks!

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Just omit the --kind flag entirely. This works for me - but I don't use a config_file. I hope that doesn't complicate things.

link|improve this answer
It worked, thanks! I used the following to download every kind to a single csv file: appcfg.py download_data --filename=backup.csv --application=MyAppId --url=http://MyAppId.appspot.com/remote_api --rps_limit=500 --bandwidth_limit=2500000 --batch_size=100 I used the following to upload the single csv file back to the datastore: appcfg.py upload_data --filename=backup.csv --application=MyAppId --url=http://MyAppId.appspot.com/remote_api --rps_limit=500 --bandwidth_limit=2500000 --batch_size=100 They are the same commands but just download_data and upload_data swapped around. – Stewie May 16 '11 at 10:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.