[google-appengine] max size for queue add

2014-03-06 Thread James Gilliam
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 ? thanks -- You received this message because you are subscribed to the Google Groups

[google-appengine] max size for queue add

2014-03-06 Thread Marcel Manz
The maximum task size is 100KB as specified in: https://developers.google.com/appengine/docs/java/taskqueue/overview-push#Java_Quotas_and_limits_for_push_queue -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group

Re: [google-appengine] max size for queue add

2014-03-06 Thread Vinny P
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

Re: [google-appengine] max size for queue add

2014-03-06 Thread Marcel Manz
You can actually use as much task storage as you like (billable) - this can be defined as per: https://developers.google.com/appengine/docs/java/config/queue#Setting_the_Storage_Limit_for_All_Queues Basically one would not want to move too large data around through task queues. Depending on