[Fixed]-Django nonrel Query confusion

1👍

You need to manage and update the indexes for your app’s queries.

Check (at least) the Index configuration section of Datastore Indexes.

The error message you got also includes the information about the index you’ll likely need for the particular query you performed.

Also note that the index configuration doesn’t become effective immediately after upload, it may take a while to build newly added indexes. I only saw delays of max a few minutes, but my DB is also quite small. YMMV.

Leave a comment