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 'max_concurrent_requests' and 'target_cpu_throughput'. 
Do those concepts of concurrency not apply to flexible? The only way to 
scale in the flexible engine is to reach a target CPU threshold, but what 
if I want to scale based on request latency as well? Somewhat similarly, I 
want to know if I can configure my web framework to accept new requests 
without waiting for an existing one to finish. Does that clear up what I'm 
trying to achieve? 


On Monday, July 2, 2018 at 2:00:56 PM UTC-4, Kenworth (Google Cloud 
Platform) wrote:
>
> 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 
> <https://cloud.google.com/appengine/articles/deadlineexceedederrors>.
>
> 2- Concurrent, by definition, means an event can exist/happen or be done 
> at the same time. This means it does not have to wait for a single task to 
> finish before executing the next one. GAE Flex environment automatically 
> scales your app and down 
> <https://cloud.google.com/appengine/docs/flexible/> while balancing the 
> load. Here is an article 
> <https://cloud.google.com/appengine/docs/flexible/python/how-instances-are-managed#instance_scaling_1>
>  
> explaining the instance behavior depending if the application is set to 
> manual or automatic scaling.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/52f798a0-9ff7-4df1-8551-b8815ee61142%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to