user429009
user429009

Reputation: 1

Is there any way to delete app engine's useless datastore indexes

I made a lots of indexes for testing,is it gonna call any issue?then how to delete them? I aready delete them from my datastore-indexes.xml.

Upvotes: 0

Views: 120

Answers (1)

Wooble
Wooble

Reputation: 89897

You need to use appcfg.py from the App Engine python SDK (yes, even if you're using Java; there's an open issue to correct this oversight) to remove indexes, with the vacuum_indexes option.

Upvotes: 2

Related Questions