[google-appengine] Re: Extremely high latency in us-central 10 second plus on static files too

2021-06-24 Thread Kaan
>From time to time, delays and errors peak, one of my players reported 
seeing 503 errors lately too, I suspect the network layer that's above App 
Engine acts up, those errors are not logged either

Since it's a PAAS, it's safe to ignore :D

On Thursday, June 24, 2021 at 9:11:56 PM UTC+3 Will Reiher wrote:

> Seems to be resolving itself now. Many thanks to the App Engine team 
> (especially the ones who read those feedback forms). I was worried that 
> you'd deployed 5400 RPM drives to fix the SSD issues from the other day.
>
> On Thursday, June 24, 2021 at 10:55:40 AM UTC-7 Will Reiher wrote:
>
>> Just wanted to give people the heads up. 
>>
>> I'm testing a minor update to my app and when viewing my staged version 
>> I'm seeing super high latency numbers that I've never experienced before. 
>> Static files are 10+ seconds and some dynamic handlers are over 90 seconds. 
>>
>> None of the code changes are to blame - super minor and more so I can't 
>> slow down static handlers. I did see a couple of warmup requests indicate 
>> server errors but I can't see those in my logs.
>>
>

-- 
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/4680f277-31a8-4d3a-a980-27a42f4a928fn%40googlegroups.com.


[google-appengine] Re: Extremely high latency in us-central 10 second plus on static files too

2021-06-24 Thread Will Reiher
Seems to be resolving itself now. Many thanks to the App Engine team 
(especially the ones who read those feedback forms). I was worried that 
you'd deployed 5400 RPM drives to fix the SSD issues from the other day.

On Thursday, June 24, 2021 at 10:55:40 AM UTC-7 Will Reiher wrote:

> Just wanted to give people the heads up. 
>
> I'm testing a minor update to my app and when viewing my staged version 
> I'm seeing super high latency numbers that I've never experienced before. 
> Static files are 10+ seconds and some dynamic handlers are over 90 seconds. 
>
> None of the code changes are to blame - super minor and more so I can't 
> slow down static handlers. I did see a couple of warmup requests indicate 
> server errors but I can't see those in my logs.
>

-- 


Please note that FriesenPress staff will be in-office on Thursday, July 
1st, but *we will be closed Friday, July 2nd.*

How we’re addressing 
COVID-19
Health and safety is our top priority. We have made arrangements 
for all staff to work remotely from home to continue to provide 
uninterrupted service, expertise and advice to our authors and prospective 
customers during the unfolding COVID-19 situation. Click here for more 
information .

Connect with us at:
 


FriesenPress Mailing Address | Suite 
300 - 990 Fort St, Victoria, BC, Canada, V8V 3K2
friesenpress.com 


You are receiving this email because you 
are a FriesenPress client or partner. This email and any documents attached 
to it may contain confidential information. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying or 
distribution of the contents of this email is prohibited. 

If you no 
longer wish to receive emails from FriesenPress, *please click here to 
unsubscribe .* The privacy of 
your information is important to us. To learn more, visit our *privacy 
policy .*

-- 
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/1f550518-6240-4cca-80b4-83c70ed1bca4n%40googlegroups.com.


[google-appengine] Extremely high latency in us-central 10 second plus on static files too

2021-06-24 Thread Will Reiher
Just wanted to give people the heads up. 

I'm testing a minor update to my app and when viewing my staged version I'm 
seeing super high latency numbers that I've never experienced before. 
Static files are 10+ seconds and some dynamic handlers are over 90 seconds. 

None of the code changes are to blame - super minor and more so I can't 
slow down static handlers. I did see a couple of warmup requests indicate 
server errors but I can't see those in my logs.

-- 


Please note that FriesenPress staff will be in-office on Thursday, July 
1st, but *we will be closed Friday, July 2nd.*

How we’re addressing 
COVID-19
Health and safety is our top priority. We have made arrangements 
for all staff to work remotely from home to continue to provide 
uninterrupted service, expertise and advice to our authors and prospective 
customers during the unfolding COVID-19 situation. Click here for more 
information .

Connect with us at:
 


FriesenPress Mailing Address | Suite 
300 - 990 Fort St, Victoria, BC, Canada, V8V 3K2
friesenpress.com 


You are receiving this email because you 
are a FriesenPress client or partner. This email and any documents attached 
to it may contain confidential information. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying or 
distribution of the contents of this email is prohibited. 

If you no 
longer wish to receive emails from FriesenPress, *please click here to 
unsubscribe .* The privacy of 
your information is important to us. To learn more, visit our *privacy 
policy .*

-- 
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/5aef0977-5c67-4938-9941-da0ec5d5478en%40googlegroups.com.


Re: [google-appengine] 500 Server Error

2021-06-24 Thread John Iacovacci
App engine is very unforgiving and 500 is a generic error
unfortunately Google does not have very good descriptive error reporting. I
normally change code to a successful version (keep removing until something
works) or use stackoverflow to debug.

On Wed, Jun 23, 2021 at 3:23 AM Rishi Patni <
ecommercefortunebuil...@gmail.com> wrote:

> Problem I have encountered:
>
> I'm deploying my node.js web app at App Engine standard environment
>
> Issue - My code is working on port8080 but after deployment I got 500
> Server Error
>
> ***Displayed error message on browser***
>
> Error: Server Error
> The server encountered an error and could not complete your request.
> Please try again in 30 seconds.
>
> ***
>
> What I was expected to happen:
>
> As code is working fine at port 8080 so I was expecting to see my app code
> running after app deployment same as it is running on port 8080
>
>
> NOTE I have not received any !!!Critical !!!Alert or !!!Emergency in LOGS
>
> ***Error in Browser Console***
> Failed to load resource: the server responded with a status of 500
> (Internal Server Error)
> **
>
>
> *- Other information *
>
>
> NOTE: I'm using node v12.20.0
>
>
> My package.json
>
> {
>   "name": "ecomm12",
>   "version": "1.0.0",
>   "description": "ecommerce training and services",
>   "main": "app.js",
>   "engines": {
> "node": "12.x.x"
>   },
>   "scripts": {
> "test": "echo \"Error: no test specified\" && exit 1",
> "start": "nodemon app.js",
> "start-server": "node app.js"
>   },
>   "author": "R",
>   "license": "ISC",
>   "devDependencies": {
> "nodemon": "^2.0.7"
>   },
>   "dependencies": {
> "body-parser": "^1.19.0",
> "ejs": "^3.1.6",
> "express": "^4.17.1",
> "mongodb": "^3.6.9"
>   }
> }
>
>
> is it ok to use 12.x.x package.json?
> as im using nodemon is it ok to use "start": "nodemon app.js",?
>
> Noting is there in Logs Explorer (!!!Critical !!!Alert or !!!Emergency)
> then how to solve this issue?
>
> --
> 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/54c00553-99ee-4162-a7c8-eb391103cbffn%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/CADTT8SQ5ifs_tbjZ0eFAtHGN5xjuNO8hR%3DJADPkArnebB%2BrdSw%40mail.gmail.com.