vote up 3 vote down star
3

Whell, I'm developing in app engine (java) and after a lot of tries and deployments, I need to "reset" the datastore. There is a lot of random data I added to test performance, and besides that the entities changed a lot, so I need to delete all: data, tables, indexes.

How can I do that?

Thanks :)

flag

2 Answers

vote up 1 vote down check

There is no built in command equivalent to DROP TABLE or TRUNCATE TABLE in SQL. You just need to create a "delete everything" page in your app, then repeatedly call that page via a script. In that page, you want to delete as many entities as you can yet still reasonably expect to finish before the request times out. The exact code depends on whether you're using JDO/JPA or the low level API. (the low level API will be faster because you can use batch operations.)

This previous SO question is pretty much the same, only for Python

link|flag
I'm using JPA. Will this delete indexes too? – Damian Jul 20 at 18:28
1  
The indexes need to get updated every time you delete something, otherwise queries that use indexes would be returning bad data. So when you delete entity X, all index entries pointing to X should be deleted as well. Eventually you'll have empty indexes when you've deleted all your entities. – Peter Jul 20 at 19:38
Great, thanks again Peter! – Damian Jul 21 at 15:09
1  
Deleting indexes using appcfg first is a good idea - it'll make the delete process faster and cause it to consume less CPU updating indexes that you're just going to delete anyway,. – Nick Johnson Jul 22 at 14:02
vote up 0 vote down

sorry to be so late on this, but I was just trying to do the same myself...

I logged into my account (appengine.google.com) and found the option to browse the datastore through an admin utility (datastore/dataviewer)... that allows create/update/delete.

link|flag
Sure, but you can't delete all entities at once, right? – Damian Sep 8 at 11:31
Nope, only 20 at a time. – RyanW Sep 9 at 15:38
1  
If you tweak the limit=20 in the URL you can up the limit. In my case increasing to 100 let me delete a chunk of data in a couple requests (and saved me writing a tool/page to do this). – Michael Twomey Sep 15 at 10:07
Nice one Michael! – DanDan Sep 29 at 1:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.