[google-appengine] Composer 2 available

2021-04-28 Thread 'Fabian Hagen' via Google App Engine
Hello all,

is it possible to use Composer 2 in an app running on php7.4 in AppEngine? 
Currently I get the following error: Full Log 


Or can I by pass the package installation within AppEngine and build the 
applicaiton instead on our buildserver?

Best,
Fabian

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/3b4ded19-36b2-482b-b48f-d40977615014n%40googlegroups.com.


Re: [google-appengine] Re: Max 10,000 file limit is not suitable for modern full featured wordpress site or any PHP app

2021-04-28 Thread Sandeep Koduri
I was looking at what files/folders has most files. Realized its plugins, I 
am not sure if I can use plugins from Cloud Storage. 

I dont understand the solution here, if appengine is infrastructure as 
service and I am paying for resources I use., why do I need special support 
plan. 

Addressing responses from Google here, Cloud Storage Cant be answer for 
problem here. And its not App Engine Free Tire issue(we have a billing 
account).

On Wednesday, April 1, 2020 at 12:18:03 AM UTC+5:30 henry@gmail.com 
wrote:

> Thanks  Katayoon
> we are uploading just 1 file per POST request.  About 10'000 files per 
> month. 
> Henry
>
>
>
> On Tue, 31 Mar 2020 at 10:45, 'Katayoon (Cloud Platform Support)' via 
> Google App Engine  wrote:
>
>> Hello Henry,
>>
>> Looking into your issue report, it seems your issue is not related to the 
>> App Engine deployment quota and is related to the Blobstore 
>> . So, 
>> you may consider the maximum number of files in a single form POST which 
>> the limit is 500. I have reopened your issue tracker ticket for further 
>> investigation and you can continue with it.
>>
>> -- 
>>
> 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-appengi...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-appengine/cb50ade3-c13b-4de0-a0ab-3ac9311157ef%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/558e25ff-353e-45ae-bc32-c4ff7549dd29n%40googlegroups.com.


[google-appengine] Re: Can GAE handle requests from the same user in a same instance

2021-04-28 Thread 'David (Cloud Platform Support)' via Google App Engine


Since GAE is serverless, you can’t route requests to a specific instance 
depending on the user. Within GCP, you may be able to use VM’s with a load 
balancer to route requests to specific VM’s depending on the user using the 
URL as a distinction, but it would require a lot of work to implement and 
it can be very pricey.
On Tuesday, April 27, 2021 at 9:09:01 AM UTC-4 jonasr...@gmail.com wrote:

> It's clear said in GAE documentation that  *Any request can be routed to 
> any instance, so consecutive requests from the same user are not 
> necessarily sent to the same instance*.
>
> But what if the requests from the same user need to be always handled in 
> the same instance, and the requests from another user are handled in 
> another instance?
> Is there a way to realize this? Or any other GCP products are targeted to 
> handle this situation?
>
> Thanks.
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/882f065b-0da2-4c52-9560-cd6c7c53eaaan%40googlegroups.com.


[google-appengine] Unstable latency inside of the Google infrasturcture during execution requests to Google AppEngine Standard

2021-04-28 Thread Andrey Hudyakov
Hello,

I faced strange latencies during execution HTTP requests to a Java (Spring 
Web) application which is deployed on Google AppEngine Standard.

For testing purposes, I've used
- VM in GCP and located in *us-central1* region to make client requests
- Java Web App in Google AppEngine Standard and deployed in *us-east1* 
region

Made exactly the same GET request to my application multiple times from VM 
in GCP. Below you can see a couple of request details

*Attempt #1*

*curl output*
time_namelookup: 0.004209
time_connect: 0.005623
time_appconnect: 0.01674
time_pretransfer: 0.016828
time_starttransfer: 0.246101
size_request: 280

time_total: 0.24617


*Google AppEngine Wallclock time*
Total clock time in milliseconds spent by App Engine on the request. This 
time duration does not include time spent between the client and the server 
running the instance of your application (According to 
https://cloud.google.com/appengine/docs/standard/java/logs)

37ms

So I expect that latency on Google network can be calculated as
time_starttransfer - time_appconnect - warclock_time

Try to explan this formula: we subtract time to connect to Google Frontend 
Server and time of processing requst by GAE infrastructure from time to 
receive the first byte of a response

And we can see that we lost 192.361ms in Google Network

*Attempt #2*

*curl output*
time_namelookup: 0.012408
time_connect: 0.014181
time_appconnect: 0.024485
time_pretransfer: 0.024586
time_starttransfer: 0.107834
size_request: 280

time_total: 0.107901

*Google AppEngine Wallclock time*
Total clock time in milliseconds spent by App Engine on the request. This 
time duration does not include time spent between the client and the server 
running the instance of your application (According to 
https://cloud.google.com/appengine/docs/standard/java/logs)

46ms

Now we lost only 37.349ms in Google Network


The difference between ~192ms and ~37ms makes me confused a bit.

Could you please help me to understand this issue and may be suggest what I 
can do with it to make this latency low?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/90da98b2-929b-4a58-ab44-8f937e473a8dn%40googlegroups.com.