I'm using the following to download all instances of one of my kinds:
appcfg.py download_data --config_file=bulkloader.yaml --kind=ModelName --filename=ModelName.csv --url=http://appid.appspot.com/remote_api
If the kind has more instances than the batch size, then I get this warning:
No descending index on __key__, performing serial download
I don't have any custom indexes, or any properties with indexes disabled.
Do I 'need' to do something to resolve this warning, or is it just a warning I can safely ignore? Does it effect the speed of the download?
This article on the bulkloader includes the warning message in the sample output, but makes no mention of it.
This post on the app engine group says that I need to create an index. However adding more indexes would slow down writes to my entities - which I'd rather not do as I am going to be writing entities more often than I will be doing bulk data downloads.
Thanks.