Live data from Hacker News

Gmail, Google Maps and YouTube had outage issues

thenextweb.com

81–90 of 105 posts

Re: Gmail, Google Maps and YouTube had outage issues

#81
post #52

GSuite has status reports for things like this, and it tends to be a good way to confirm a Google service outage[0]. Direct link to the issue[1]. [0] https://www.google.com/appsstatus#hl=en&v=status [1] https://www.google.com/appsstatus#hl=en&v=issue&sid=1&iid=d4...

400s for me.

Re: Gmail, Google Maps and YouTube had outage issues

#83
post #72
post #46

Earlier quoted context omitted.

For something like jquery, you can host locally and fallback to it if the CDN fails. https://stackoverflow.com/a/1014251

Loading JavaScript libraries synchronously should be avoided if possible, making the above solution not a great one.

Until Google goes down. Which makes it a really great one.

Re: Gmail, Google Maps and YouTube had outage issues

#86
post #19

Earlier quoted context omitted.

2 reasons: 1. If you're still using HTTP 1.x, sharding assets across origins lets the browser load them in parallel (if set up correctly). You can generally load just 6 assets in parallel per origin, and sharding is a way to get around that limit. 2. A library like jQuery is so popular, and is so often served from googles CDN, that chances are a user already has it in their local cache from when they downloaded it on…

> If you're still using HTTP 1.x Not sure why it was phrased that way but...isn't everybody? I know that HTTP/2 is released and browsers support it, but I'm fairly certain that next to nobody is actually doing anything with it.

Google, FB, Youtube, Wikipedia, and HN :) use HTTP2.

I also use HTTP2 at work, and on every personal project. It's supported by every browser [1], and comes with a slew of benefits. It's usually trivial to set up, if you want to give it a shot.

[1] http://caniuse.com/#feat=http2

Re: Gmail, Google Maps and YouTube had outage issues

#88
post #52

GSuite has status reports for things like this, and it tends to be a good way to confirm a Google service outage[0]. Direct link to the issue[1]. [0] https://www.google.com/appsstatus#hl=en&v=status [1] https://www.google.com/appsstatus#hl=en&v=issue&sid=1&iid=d4...

Kind of nice of them to show past results AWS for example tends to "forget" past issues and even has problems admitting to the current ones until they are very noticeable making their status page quite useless.

Re: Gmail, Google Maps and YouTube had outage issues

#89

Lets just hope that 8.8.8.8 remains stable. That can cause a whole heck of a lot more problems if it goes down.

> Lets just hope that 8.8.8.8 remains stable. That's why the smart money defaults to 8.8.4.4...

I'm confused, 8.8.4.4 (and 8.8.6.6) are all owned by google, so I'm assuming a 8.8.8.8 outage could also have the others go out?

Re: Gmail, Google Maps and YouTube had outage issues

#90
post #15

Earlier quoted context omitted.

Is there a good reason to use these things hosted by a third party source? Libraries are tiny, the fonts can be downloaded from Google Fonts and embedded locally, etc. Even the Google Analytics JS script I presume can be stored and run local. Shouldn't a goal be to mitigate the number of possible failures which can bring down your site by reducing the number of single points of failure?

IIRC Google Fonts aren't easy to download because they vary by user agent.

You can download zip archive of ttfs using the customize tab on the fonts site. Or go directly to the source, and get the git repo.
Post reply on HN