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

后端 未结 3 1325
迷失自我
迷失自我 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:17

    I've solved this problem by add this code to index.yaml

    kind: books
    - properties:
      name: __key__
        - direction: desc
    kind: books
    - properties:
      name: another_indexes_here
    

提交回复
热议问题