Does anyone know how to delete all datastore in Google App Engine?
|
feedback
|
|
The best approach is the remote API method as suggested by Nick, he's an App Engine engineer from Google, so trust him. It's not that difficult to do, and the latest 1.2.5 SDK provides the remote_shell_api.py out of the shelf. So go to download the new SDK. Then follow the steps:
| |||||||||
feedback
|
|
If you're talking about the live datastore, open the dashboard for your app (login on appengine) then datastore --> dataviewer, select all the rows for the table you want to delete and hit the delete button (you'll have to do this for all your tables). You can do the same programmatically through the remote_api (but I never used it.) If you're talking about the development datastore, you'll just have to delete the following file: "./WEB-INF/appengine-generated/local_db.bin". The file will be generated for you again next time you run the development server and you'll have a clear db. Make sure to clean your project afterwards. This is one of the little gotchas that come in handy when you start playing with the Google Application Engine. You'll find yourself persisting objects into the datastore then changing the JDO object model for your persistable entities ending up with a obsolete data that'll make your app crash all over the place. | |||||||||
feedback
|
|
The fastest and efficient way to handle bulk delete on Datastore is by using the new mapper API announced on the latest Google I/O. If your language of choice is Python, you just have to register your mapper in a mapreduce.yaml file and define a function like this:
On Java you should have a look to this article that suggests a function like this:
EDIT: | ||||
|
feedback
|
|
If you have a significant amount of data, you need to use a script to delete it. You can use remote_api to clear the datastore from the client side in a straightforward manner, though. | |||
|
feedback
|
|
Also, you can clear the development server datastore when you run the server:
http://code.google.com/appengine/docs/python/gettingstarted/usingdatastore.html | |||
|
feedback
|
|
The zero-setup way to do this is to send an execute-arbitrary-code HTTP request to the admin service that your running app already, automatically, has:
| |||||
feedback
|
|
You can do it using the web interface. Login into your account, navigate with links on the left hand side. In Data Store management you have options to modify and delete data. Use respective options. | ||||
|
feedback
|
|
I've created an add-in panel that can be used with your deployed App Engine apps. It lists the kinds that are present in the datastore in a dropdown, and you can click a button to schedule "tasks" that delete all entities of a specific kind or simply everything. You can download it here: | |||
|
feedback
|
|
Here you go: Go to Datastore Admin, and then select the Entitiy type you want to delete and click Delete. Mapreduce will take care of deleting! | |||
|
feedback
|
SourceI got this from http://code.google.com/appengine/articles/remote_api.html.
Create the Interactive ConsoleFirst, you need to define an interactive appenginge console. So, create a file called appengine_console.py and enter this:
Create the Mapper base classOnce that's in place, create this Mapper class. I just created a new file called utils.py and threw this:
Mapper is supposed to be just an abstract class that allows you to iterate over every entity of a given kind, be it to extract their data, or to modify them and store the updated entities back to the datastore.
Run with it!Now, start your appengine interactive console:
That should start the interactive console. In it create a subclass of Model:
And, finally, run it (from you interactive console): mapper = MyModelDeleter() mapper.run() That's it! | |||
|
feedback
|
|
If you have a lot of data, using the web interface could be time consuming. The App Engine Launcher utility lets you delete everything in one go with the 'Clear datastore on launch' checkbox. This utility is now available for both Windows and Mac (Python framework). | |||
|
feedback
|
|
This answer just expands on the one given by Nick. Here is the script I use to clear the dev_appserver datastore. (This way there is no need to restart it with the -c switch.) It uses the remote_api, which must be configured.
To modify this script for on a production app, you'd need to change the | |||
|
feedback
|
|
For Python, 1.3.8 includes an experimental admin built-in for this. They say: "enable the following builtin in your app.yaml file:"
| |||
feedback
|
|
PHP variation:
Yes it will take time and 30 sec. is a limit. I'm thinking to put an ajax app sample to automate beyond 30 sec. | |||
|
feedback
|
|
I was so frustrated about existing solutions for deleting all data in the live datastore that I created a small GAE app that can delete quite some amount of data within its 30 seconds. How to install etc: http://code.google.com/p/xydra/wiki/GaeMyAdmin | |||
|
feedback
|
| |||
|
feedback
|
|
I often don't want to delete all the data store so I pull a clean copy of /war/WEB-INF/local_db.bin out source control. It may just be me but it seems even with the Dev Mode stopped I have to physically remove the file before pulling it. This is on Windows using the subversion plugin for Eclipse. | |||
|
feedback
|
|
Open "Datastore Admin" for your application and enable Admin. Then all of your entities will be listed with check boxes. You can simply select the unwanted entites and delete them. | ||||
|
feedback
|
db.delete(db.Query())– Andrey Gubarev May 10 '11 at 22:06