[google-appengine] Re: GAE's http header length limit, bug or undocumented restriction?

2012-10-30 Thread Fabio Sgrò
Hi All, I've got the same error and i can't find any information in the documentation. For me the limit is a little increased, is about 600 character for a single header... Is this a bug or an unreported restriction?? Thanks to all Fabio Il giorno lunedì 16 gennaio 2012 19:39:41 UTC+1,

[google-appengine] Need help with backends

2012-10-30 Thread Joshua Smith
If any of you have successfully used backends in python, could you give me some assistance: http://stackoverflow.com/questions/13094068/how-do-i-configure-a-backend-in-gae I'm not getting any useful answers. I'm sure I'm missing something fundamental. Thanks. -Joshua -- You received this

[google-appengine] Re: Datastore Latency issues?

2012-10-30 Thread Brian
Did you ever get a solution to this problem you posted over *3 years ago*!? I'm having a similar issue: https://groups.google.com/d/topic/google-appengine/hCqKExsU7m4/discussion -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this

Re: [google-appengine] Re: Datastore Read Operations Quota Whacked-Out?

2012-10-30 Thread Brian
I changed my query to .fetch(1) object, after waiting 37 minutes with no results I killed the request. (Keep in mind that that my app works great on my local dev_server, but getting my app uploaded to Datastore has taken several weeks now, with no end in sight based on all the problems I keep

[google-appengine] Re: Does AppEngine BlobStore support Chunked Transfer Encoding for uploads (getting Status 411: Length required)?

2012-10-30 Thread Markus Ansmann
In case someone does care: The dev-server does NOT support chunked transfer encoding, but the production server DOES. I guess we just need to write two versions of our code that switch mode of operation based on the upload url... On Monday, October 29, 2012 12:47:01 PM UTC-7, Markus Ansmann

[google-appengine] Re: ndb, deadlock waiting for flush, and maximum recursion in app_logging

2012-10-30 Thread Guido van Rossum
Hi ckhan, I have debugged a similar problem for an internal app once. The root cause was that they were mixing synchronous and async API calls. In particular, inside a tasklet they were making a synchronous call. The synchronous call is run by invoking the event loop recursively; what may

[google-appengine] Re: ndb, deadlock waiting for flush, and maximum recursion in app_logging

2012-10-30 Thread ckhan
Hi Guido - Thanks, this was exactly the case! I was indeed mixing sync/async calls in a tasklet. A few follow-up questions: 1. Is there anything I could have/should have done to make it easier for me realize this was the problem? Even just showing more frames from the recursive stack

Re: [google-appengine] Re: ndb, deadlock waiting for flush, and maximum recursion in app_logging

2012-10-30 Thread Guido van Rossum
On Tue, Oct 30, 2012 at 2:54 PM, ckhan charleyk...@gmail.com wrote: Hi Guido - Thanks, this was exactly the case! I was indeed mixing sync/async calls in a tasklet. Glad it's been diagnosed. A few follow-up questions: 1. Is there anything I could have/should have done to make it easier