Re: [google-appengine] Re: App Engine doesn't downscale when CPU utilisation is below target_utilization

2020-07-19 Thread tz martin
Does anyone know if potential health check settings (liveness_check or readiness_check) are as requests that would prevent downscaling instances? Wondering if health check "bursts" would keep one or all instances alive. On Tuesday, September 3, 2019 at 2:52:21 PM UTC diogoa...@google.com

[google-appengine] Re: Google App Engine SDK 1.7.7 is now available!

2013-04-12 Thread tz
I have the same problem as Panjie: I can no longer use the api explorer on the local development server, instead it gets redirected to https://developers.google.com/apis-explorer/#p/ On Tuesday, April 9, 2013 6:44:38 PM UTC-4, Richmond Manzana wrote: Hi everyone, We're happy to announce

[google-appengine] Re: Google App Engine SDK 1.7.7 is now available!

2013-04-12 Thread tz
I have the same problem Panjie, have you found a work around? On Thursday, April 11, 2013 4:05:01 PM UTC-4, Panjie Setiawan Wicaksono wrote: Hi, with 1.7.7 python SDK i no longer can visit the local endpoint api explorer. Before, i'd visit http://localhost:8080/_ah/api/explorer then

[google-appengine] What is the image data format for Image?

2012-02-01 Thread tz
Hi Everyone, I want to generate my own image in GAE from my own data, but I don't know what the format of the image data should be. Can I just make it 24bit RGB? The little test below has an illegal argument exception, and the javadoc for getFormat says that occurs when the image data is

[google-appengine] Re: GQL - Delete entries by ID

2010-08-19 Thread TZ
Thank you!. It works with WHERE __key__ = Key('board_topic_entry', 20). :-) -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email

[google-appengine] GQL - Delete entries by ID

2010-08-18 Thread TZ
Hi. I want to recode my python webapplication script because it should run on the Google App Engine. Before I used SQL but now I must rewrite my database queries in GQL/ Datastore by Google. I have problems to delete database entries. I want delete entries by ID but it doesn't work. My db class: