On Sat, Nov 23, 2013 at 12:32 PM, Michael Prentice <[email protected]> wrote:
> How you do this with Java? Preferably is there a way to do it in the > Datastore Admin or App Engine Console? > I'd like to selectively delete indexes, not just all indexes that aren't > in the datastore-indexes.xml. > > There's no way to selectively delete indexes; the only way is to use *vacuum_indexes* to clean out all unused indexes. What you can do is add all the indexes you want to keep to *datastore-indexes.xml*, then run the *vacuum_indexes* command. You can also star this issue: https://code.google.com/p/googleappengine/issues/detail?id=6133 which includes a feature request for a delete button. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
