App engine index building stalled stuck

1.8k Views Asked by At

I am having a problem with indexes building in my App Engine application. There are only about 200 entities in the indexes that are being built, and the process has now been running for over 24 hours.

My application name is romanceapp.

Is there any way that I can re-start or clear the indexes that are being built?

2

There are 2 best solutions below

0
On BEST ANSWER

Try to redeploy your application to appspot, I have the same issue and this solved it. Let me know if this helps.

Greeting, eng.Ilian Iliev

0
On

To handle "Error" indexes, first remove them from your index.yaml file and run appcfg.py vacuum_indexes. Then, either reformulate the index definition and corresponding queries or remove the entities that are causing the index to "explode." Finally, add the index back to index.yaml and run appcfg.py update_indexes.

I found it here and it helps me.