App engine bulk loader download warning “No descending index on __key__, performing serial download”

后端 未结 3 1323
迷失自我
迷失自我 2021-01-13 17:45

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=Mode         


        
3条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-13 18:06

    If your using JAVA and the datastore-indexes.xml file.

    Add this (Assuming the name of the kind is "Books") to the datastore-indexes.xml file:

     
         
    
    

    Then redeploy your app. Ensure you check the datastore index tab to see that the __key__ is serving. Then you can try your download again.

提交回复
热议问题