Home > Back-end >  How can you delete individual indexes on properties in an Entity?
How can you delete individual indexes on properties in an Entity?

Time:09-08

I know you can delete composite indexes with gcloud datastore indexes cleanup but what about deleting individual indexes on properties in an Entity?

For example, let's say you have been indexing a property on an entity for a while, but then you decide not to anymore and upload a new version of your app that excludes it. I presume the index is still somewhere there in a table somewhere. Is there a way to clear these out?

CodePudding user response:

The index is updated for an entity when you put the entity. You could put all of your entities to clear that index for all of them.

  • Related