[google-appengine] Re: Bulk delete stuck

2011-10-18 Thread b
It seems like stats were correctly calculated eventually, but those 2 steps are still "active", so I'm afraid that if I start writing to datastore, something might be deleted by those 2 active steps. Could someone from appengine team chime in? -- You received this message because you are subsc

[google-appengine] Re: Bulk Delete...

2009-10-28 Thread Takashi Matsuo
Hi jimmer, I've implemented a bulk delete command with threads in my own framework. It can delete all of your entities very fast. The only problem is that this command depends upon my framework. The main code is here: http://code.google.com/p/kay-framework/source/browse/kay/management/shell.py

[google-appengine] Re: Bulk Delete...

2009-10-28 Thread djidjadji
If you want a bulk deleter from the command line have a look at the article about the remote_api, and the Mapper class. An other possibility is using the deferred module, see the article about the Mapper used with deferred. From the command line use curl or wget to trigger an URL that starts a de

[google-appengine] Re: Bulk Delete...

2009-10-28 Thread Barry Hunter
I'm curious why you think its even possible? As you say there is no option to delete data via appcfg. If you want to delete, as you say just implement it yourself via your application. 2009/10/28 jimmer : > > Does anyone know how to bulk delete the datastore via the appcfg.py > file? > > I bul