Using Java loader Java applications to load the entire data warehouse into a single csv file

I am currently using the --kind to specify the type of boot and --filename to specify the name of the csv file to be created. --rps_limit , --bandwidth_limit and --batch_size are used to speed up loading.

For example, to download my game, I use:

 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 load the entire data store without being nice to a single csv file?

Thanks!

+2
java google-app-engine
source share
1 answer

Just omit the --kind flag. This works for me, but I do not use config_file. I hope this does not complicate the situation.

+4
source share

All Articles