[google-appengine] Re: Google Cloud Platform wants to hear from you

2020-04-21 Thread 'Pierre-Yves (Google Cloud Support)' via Google App Engine
Hello Jitendra, This thread was to discuss how new users could benefit from an improved experience using GCP. If you have specific inquiries on using App Engine, I suggest you open a new thread [1]. To address your question, you may create multiple App Engine services in a project, targeting di

[google-appengine] Re: next.js app taking 15-25 seconds to load from “cold” on google app engine

2020-04-21 Thread 'Katayoon (Cloud Platform Support)' via Google App Engine
Hello, I would like to add that whenever you send a start request an instance is brought into existence and is initialized. So it needs some time to load the required libraries and resources to handle t

[google-appengine] Re: Secure Cloud Scheduler App Engine route with X-Cloudscheduler

2020-04-21 Thread 'Olu' via Google App Engine
According to Cloud Scheduler documentation [1--See the App Engine HTTP], App Engine endpoints can be secured with "login: admin" in the app.yaml file. While I understand that the admin login feature is not available for some environments and not documented for some of the App Engine Standard L

[google-appengine] Re: High memory consumption

2020-04-21 Thread 'Katayoon (Cloud Platform Support)' via Google App Engine
Hello, You may use Cloud Profiler to better understand where the usage comes from. You can profile applications running inside or outside Google Cloud . -- You received this message because you are subscribed

[google-appengine] Re: next.js app taking 15-25 seconds to load from “cold” on google app engine

2020-04-21 Thread 'Alex Fox' via Google App Engine
So I managed to improved the load times by enabling "serverless" in the next.js settings. This is enabled by default when deploying to ziet. I also added the /_ah/start warmup which essentially just keeps the instance alive. All getInitialProps are just returning some basic context and I'm using

[google-appengine] Re: Google Cloud Platform wants to hear from you

2020-04-21 Thread Jitendra Kumar
Hi Katie, How can I deploy a python script with two url staging.abc.com and admin.abc.com under one project On Thursday, 16 April 2015 01:37:31 UTC+8, Katie Ball (Google Cloud Support) wrote: > > Hi, > > My name is Katie, and I am on the Google Cloud Platform technical support >

[google-appengine] Re: appEngine stopping automatically earlier than configured

2020-04-21 Thread 'Juan Carlos Gomez' via Google App Engine
Hi, Generally speaking the app engine instances can be shutdown for planned and unplanned reasons shown here [1]. There are some planned shutdowns on the instances with automatic_scaling to update the libraries in the host machines and in the runtime environments, the instances are shut down o

[google-appengine] Re: Old pip version being used when deploying to app engine flexible

2020-04-21 Thread 'Emil' via Google App Engine
Hi Gabriel, As was proposed by Nicolas, if you need specific version of pip to install other dependancies, you can switch to custom environment and tweak Dockerfile to first update pip and then install other dependan

[google-appengine] Re: Tensorflow 2.1 dependency

2020-04-21 Thread 'waela' via Google App Engine
Hello, In GAE Standard you cannot change the pip version, however in GAE Flex you can build your own runtime based on a GCP official image and then add a step before installing requirements to force use a specific or latest pip version using something like "python3 -m pip install --user --upgra