Is there a way to delete unused indexes in Google App Engine Java application?
The only one way I was able to find is to create an empty Python GAE application and run the following command:
appcfg.py vacuum_indexes /path/to/myapp/
Is there a more intelligent way?
Update (16 feb 2011):
Starting from GAE SDK 1.4.2 it is possible:
./appengine-java-sdk/bin/appcfg.sh vacuum_indexes myapp/war
The ability to vacuum indexes in Java has been added to the GAE SDK 1.4.2. See this blog post for details: http://www.codeonastick.com/?p=95