I'm struggling a bit with this. I'm trying to bulk dump an entity in
my datastore. I get the following info:

[INFO    ] Model_mobileapp: No descending index on __key__, performing
serial download

Now, I added the following index:
- kind: Model_mobileapp
  properties:
  - name: __key__
    direction: desc
  - name: appId

The index built fine and is serving. However, I still don't get
parallel fetching. Why is that? Does that have to do with me using
AppEnginePatch for Django, which makes a bit of a mess out of the
datastore? The class to this entity is actually called MobileApp in
module Model (ie. Model.MobileApp). However, doing a fetch on that
entity name works fine:

q = db.GqlQuery("SELECT * FROM Model_mobileapp").fetch(10)

gives results. Any suggestions on how this can be fixed? GAE-style
indexes are still a bit of a mystery to me, I must admit...

TIA,
Ben

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to