On Thu, Mar 6, 2014 at 1:39 PM, James Gilliam <jimgill...@gmail.com> wrote:

> in the docs, I cannot locate a maximum size of data in a push queue add
> request but it appears to be around 100k bytes
> does anybody know what the maximum is and
> if it is just 100k, why not at least a meg ?
>


You're correct, the maximum size is 100KB. See the push queue docs here,
scroll down to the table where it says "Maximum Task Size":
https://developers.google.com/appengine/docs/python/taskqueue/overview-push#Python_Quotas_and_limits_for_push_queues.
If you try to exceed the 100KB limit, you'll get a TaskTooLargeError.

As for the "not at least a meg" question, my theory would be that 100KB is
the most that the infrastructure can push around reliably without having to
store it to persistent storage (and incurring datastore, etc costs).


-----------------
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to