Does anyone know how to delete all datastore in Google App Engine?
|
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:
|
|||||||||||||||||
|
|
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. |
|||||||||||
|
|
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: |
||||
|
|
|
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. |
|||
|
|
|
Also, you can clear the development server datastore when you run the server:
http://code.google.com/appengine/docs/python/gettingstarted/usingdatastore.html |
|||||||
|
|
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:
|
||||
|
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! |
|||
|
|
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! |
|||
|
|
|
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. |
||||
|
|
|
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: |
|||
|
|
|
For Python, 1.3.8 includes an experimental admin built-in for this. They say: "enable the following builtin in your app.yaml file:"
|
|||||
|
|
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. |
||||
|
|
|
This is what you're looking for...
Running a keys-only query is much faster than a full fetch, and your quota will take a smaller hit because keys-only queries are considered small ops. Here's a link to an answer from Nick Johnson describing it further. Below is an end-to-end REST API solution to truncating a table... I setup a REST API to handle database transactions where routes are directly mapped through to the proper model/action. This can be called by entering the right url (example.com/inventory/truncate) and logging in. Here's the route:
Here's the handler:
It starts by loading the model dynamically (ie Inventory found under api.models), then calls the correct method (Inventory.truncate()) as specified in the action parameter. The @basic_auth is a decorator/wrapper that provides authentication for sensitive operations (ie POST/DELETE). There's also an oAuth decorator available if you're concerned about security. Finally, the action is called:
It looks like magic but it's actually very straightforward. The best part is, delete() can be re-used to handle deleting one-or-many results by adding another action to the model. |
||||
|
|
|
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). |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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 |
|||
|
|
|
|||
|
|
|
I did this using the Google App Engine Launcher (python): 1 - Run your app. 2 - Click on SDK Console. 3 - From the new page, choose Datastore Viewer. 4 - Choose the entries you want, then click "delete". I hope this helps, I am honestly a GAE newbie :-) |
|||
|
|

db.delete(db.Query())– Andrey Gubarev May 10 '11 at 22:06