up vote 7 down vote favorite
2
share [g+] share [fb]

How can I remove all entities or reset the local datastore on my dev_appserver? I accidentally recursively called a function to create an entity when testing.

I am using the Google App-engine SDK on Vista with Python.

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted
dev_appserver.py --clear_datastore myapp

See here for more info.

Shorthand version:

dev_appserver.py -c
link|improve this answer
Wow, looked over that for sure. Thank you – Jason Rikard Jun 18 '09 at 3:08
feedback

A useful thing to do is to always specify --datastore_path, e.g. --datastore_path=test.datastore.

To delete it you can then just delete the file. You can also keep copies and swap them in and out. And the store will persist over reboots (when /tmp/ the default location for it on Linux anyway, gets cleared)

link|improve this answer
feedback

in production, this may also come in handy (or be a security nightmare).

# will DELETE the database use http://localhost:8083/deletemodels?force=true
class DeleteModels(webapp.RequestHandler):
    def get(self):

    def dMsg(msg):
      self.response.out.write(msg + '\n')
    n = self.request.get('force')
    if n:
      dMsg('clearing YourModelHere data....')
      for uc in YourModelHere.all():
               uc.delete()
               dMsg('.')
      dMsg('clearing YouNextModelHere data....')           
      for uc in YouNextModelHere.all():
               uc.delete()
               dMsg('.')     
link|improve this answer
In production, you can also do it from the Datastore Admin, which submits a delete Task. – hyperslug May 6 '11 at 13:00
feedback

Your Answer

 
or
required, but never shown

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