Hi Eli,

There is a delay between a task executing and the quota being
reclaimed. This is documented at
http://code.google.com/appengine/docs/python/taskqueue/overview.html#Quotas_and_Limits.

"""
Once a task has been executed or deleted, the storage used by that
task is reclaimed. The reclaiming of storage quota for tasks happens
at regular intervals, and this may not be reflected in the storage
quota immediately after the task is deleted.
"""


On 19 January 2011 11:41, Eli Jones <eli.jo...@gmail.com> wrote:
> On the Task Queues page for my application, it shows:
> Task Queue Stored Task Bytes 96% 100,666,135 of 104,857,600
>
> But, all of my queues are empty.
> I just ran tens of thousands of deferred tasks to delete a bunch of entities
> in batches of 50 (bunch = around 400,000.. so that's around 10,000 deferred
> tasks).
> Each deferred task was just running a db.delete() against 50 keys.. and they
> were taking around 200ms - 400ms to run.  (Some peaked at around 3 to 4
> seconds).
> So.. it seems that the Stored Task Bytes value is a little funky.  Any plans
> to make this value more up-to-date?
> My presumption is that "Stored Task Bytes" should reflect the storage taken
> up by scheduled tasks that have no yet run.
> And, that once a scheduled task successfully runs, the "Stored Task Bytes"
> value gets updated.
> I added "total_storage_limit: 1.0G" at the top of my queue.yaml as a
> temporary work-around.. (to give more breathing room in case I hit the hard
> limit at 100MB)  But, it would be nice if "Stored Task Bytes" reflected the
> actual bytes for current stored and scheduled tasks.
> So, right now it shows:
> Task Queue Stored Task Bytes 9% 100,666,135 of 1,073,741,824
> My app-id is:  me-finance
>
> Thanks for any assistance.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>



-- 
Greg Darke

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to