i stored some entities in the datastore from my golang-appengine-project. I annotated some fields with 'noindex', so it didn't create simple indices for some columns.
Now i removed the noindex-annotation but i don't know how to rebuild the index. I tried:
gcloud datastore create-indexes ../path/to/file/index.yaml
But it didn't rebuild index. So i can only search recently added values, but not old values.
How can i rebuild the index?
Thanks