[google-appengine] Re: Decline requests to the one GAE instance to use for them a other GAE instance

2018-07-02 Thread Aleksander Efremov
Thanks for a clear point here. On Monday, July 2, 2018 at 6:47:01 PM UTC+4, Jordan (Cloud Platform Support) wrote: > > It is not recommended to change the code that is currently running on a > single App Engine instance. Since App Engine scales its instances of your > application, >

Re: [google-appengine] Re: zigzag merge

2018-07-02 Thread Rajesh Gupta
+1 It would be nice, if the production system keeps this statistics. It would be give more confidence to remove this, as we know it is not used over time. Currently, queries are written few years ago, and refactored by different people over the the years. There may be a forgetting factor to

[google-appengine] Re: Does App Engine Flexible for Python support concurrent requests?

2018-07-02 Thread Parth Mishra
1. Isn't the deadline exceeded error only for standard App engine or does it apply to both? I was testing this today and I could make requests with latency return times of much greater than 60s 2. I guess I'm confused on why the app.yaml documentation for Flexible omits things such as

[google-appengine] Can App Engine Flexible be autoscaled based on Cloud Pub/Sub queue?

2018-07-02 Thread Parth Mishra
I know you can configure autoscaling based on queue size when scaling a Compute Engine instance group, but I'm unsure of how I could replicate this behavior in a flexible App Engine based environment. Is there a way to at least mimic this scaling behavior? If it's not possible in GAE, is it

[google-appengine] Re: Autoscaling with Flex

2018-07-02 Thread Tom Stuart
Hi Yanik, Do you have any examples of bumping up the number of instances using cron jobs? Thanks Tom On Thursday, October 12, 2017 at 5:03:55 PM UTC+1, Yannick (Cloud Platform Support) wrote: > > Hello Patrick, > > As can be seen on the high-level feature comparison chart >

Re: [google-appengine] Re: zigzag merge

2018-07-02 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Vitaly, "google.appengine.ext.testbed package" documentation page defines init_datastore_v3_stub(enable=True, datastore_file=None, use_sqlite=False, auto_id_policy='sequential', **stub_kw_args). The signature does not specifically mention the "require_index" parameter. This is passed

Re: [google-appengine] Gae project defining more simple way

2018-07-02 Thread Jukka Hautakorpi
Thanks! This will help me not to make mistakes! maanantai 2. heinäkuuta 2018 18.31.52 UTC+3 Steren Giannini kirjoitti: > > Hi, > > When deploying, we recommend to always create a new version instead of > overriding an existing one. This is achieved by not passing the --version > flag when

[google-appengine] Re: Does App Engine Flexible for Python support concurrent requests?

2018-07-02 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
1- I assume the 60-second value was just some random number. This is because the deadline for requests to frontend instances is 60 seconds. Otherwise, you will be hit by DeadlineExceededErrors . 2- Concurrent, by definition,

[google-appengine] Re: Hey after two days I get a message the I cannot deploy my appengine becuase I already got too many version.

2018-07-02 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
The feature to write-protect / password-protect a version is not yet currently supported. In that regard, I encourage you to submit that feature request here as described in this article so that proper

Re: [google-appengine] Gae project defining more simple way

2018-07-02 Thread 'Steren Giannini' via Google App Engine
Hi, When deploying, we recommend to always create a new version instead of overriding an existing one. This is achieved by not passing the --version flag when running gcloud app deploy. When doing so, you can then safely rollback to the previously serving version if something goes wrong with the

Re: [google-appengine] App Engine billed me for executing the tutorial for a week.

2018-07-02 Thread 'Steren Giannini' via Google App Engine
Hi, Can you detail which tutorial you followed ? (In particular, which language and environment) Thanks. On Sun, Jul 1, 2018, 10:15 Hersh Reddy wrote: > I used to use App Engine back in 2013 and I decided to try it again last > week. I went over the tutorial to refresh my memory about how it

[google-appengine] NDB Query hangs for one set of criteria

2018-07-02 Thread Myles Bostwick
I have a datastore query I make as an integral part of my system. It's an equality filter on four properties. When I make this query for one set of criteria, the query just hangs. It does not hang for this set of criteria in the datastore viewer, so I can see that there are only two results to

[google-appengine] Re: Decline requests to the one GAE instance to use for them a other GAE instance

2018-07-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
It is not recommended to change the code that is currently running on a single App Engine instance. Since App Engine scales its instances of your application, that single instance may turn down due to low

[google-appengine] Gae project defining more simple way

2018-07-02 Thread Jukka Hautakorpi
Hello I have few project that i update every now and then. Php and GAE. Used to use the old cmd tools (appcfg.py) but had to update to gcloud I made a mistake and run command gcloud app deploy project222/app.yaml --version=1 --promote without reading closely enough and it updated this project

[google-appengine] Will App Engine Flex Environment ever support Memcache?

2018-07-02 Thread Marc Garabedian
Will App Engine Flexible Environment ever support Memcache? Documentation seemed to indicate it might, but I have not seen anything on this for a long time. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group

[google-appengine] Project moved to some organization by mistake. How to fix?

2018-07-02 Thread Ondřej Španěl
Hi, I have moved one of my projects into organization sift-ms.com by mistake while inspecting its properties (I think it was IAM / Admin / Settings page of the Cloud Console). I have no idea what this organization is and why I was able to move my project to it. This domain seems to be used for

Re: [google-appengine] Re: zigzag merge

2018-07-02 Thread Vitaly Bogomolov
> > In fact the "bingo" info is amply documented on the "Local Development > Server Options" documentation page > , > > where usage for the --require_indexes=yes|no options are described in > detail. > I