Just guessing here, I worked for a few weeks with cassandra (another nosql, like bigtable), and it seems distributed deletes are really hard to do. Basically, deletes will not free up your memory inmediatly (more like in a week or so). That would explain your problems.
Well, but that just how it works on cassandra. On Sep 25, 3:33 am, Hugo Visser <[email protected]> wrote: > Another me too again. This happens once in a while, and it is > mentioned in a couple of threads. I never got a clear explanation on > what causes this. The amount of data that my app stores is constant, > but there are a lot of updates to that data. I also use memcache, but > the things I put in memcache have an expire time set so that should > also be kinda constant. > > The quota page says: "The total amount of data stored in datastore > entities and corresponding indexes, in the memcache, and in the > Blobstore." > I've flushed the memcache again for my app, let's see if it helps... > > On Sep 24, 11:07 pm, chrisfarms <[email protected]> wrote: > > > > > > > > > I see similar. > > > But didn't think too much of it since I have lots of data in the > > blobstore which the quota registers as 0, I assumed my blobstore > > storage was getting lumped into the datastore pile. > > > Also see:http://code.google.com/p/googleappengine/issues/detail?id=2479 > > > On Sep 23, 5:09 pm, David <[email protected]> wrote: > > > > The Total Stored Data quota seems to be very incorrect. The Datastore > > > statistics only show 71MB for the size of all entities. And I only > > > have one index in the Datastore indexes section which is an index on a > > > string and an integer. The string is typically 30 characters long or > > > so. I do have the app periodically delete entities when it is done > > > with them, but they are typically short lived entities where they may > > > only be in there for a number of days. I saw the Total Stored Data > > > drop once when I added the auto pruning of data, but now I'm getting > > > close the 1GB limit and I don't want my application to stop working. > > > Does anybody know what might be going on? How do it get it to reduce > > > the number to where it should be? > > > > Thanks, > > > David -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
