Using Java Google App Engine bulkloader to downloa

2019-02-19 11:24发布

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!

1条回答
小情绪 Triste *
2楼-- · 2019-02-19 11:47

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.

查看更多
登录 后发表回答