Does anyone know how to delete all datastore in Google App Engine?
|
1
|
|||
|
|
|
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. |
||
|
|
|
|
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. |
||||||
|
|
|
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. |
|||
|
|
|
|
Use the web interface: http://appengine.google.com/datastore/explorer?&app%5Fid=YOURAPPID |
|||
|
|
|
|
This is question How to do this in JAVA?? |
||
|
|
