[google-appengine] Re: 1.9.13 causing some requests to crash instances?

2014-10-07 Thread Ryan Barrett
looks like this has stopped as of around 1pm PST today. app engine team, if this was a 1.9.13 bug that got fixed, thank you! On Monday, October 6, 2014 8:54:04 AM UTC-7, Ryan Barrett wrote: > > hi all! starting around 3PM PST yesterday, my instances have started > crashing on a small fraction of

Re: [google-appengine] Trouble reading a pile of stuff from the datastore

2014-10-07 Thread Joshua Smith
Yup, cursors are a good workaround. Here's my fix... hcur = None keepGoing = True while keepGoing: count = 0 hall = HitModel.all() if hcur: hall.with_cursor(start_cursor=hcur) keepGoing = False for h in hall: ...my processing stuff...

Re: [google-appengine] Trouble reading a pile of stuff from the datastore

2014-10-07 Thread PK
I have seen this error as well and had to change my code. My situation is python 2.7/HRD/db.Query() in a module with manual scaling. q = db.Query(…) … for ent in q.run():      do stuff The iteration goes well for a large number of entities and then gives up in a similar way. Something seems to

[google-appengine] Trouble reading a pile of stuff from the datastore

2014-10-07 Thread Joshua Smith
I have an app that once a day does a big data processing task. Every now and then it would throw a datastore timeout error. But now it's throwing them constantly. I thought maybe my data had tripped over some limit on how much you can read, but I just added some instrumentation and it's only re

[google-appengine] Re: Channel API - Channels Created Costs

2014-10-07 Thread Alexis
We've been using the Channel API for a while and since March 2014 pricing changes (http://googlecloudplatform.blogspot.fr/2014/03/google-cloud-platform-live-blending-iaas-and-paas-moores-law-for-the-cloud.html) Channel created are free. They used to be priced at 1 cent for 100 created, which app