Google Cloud — Network Service Tiers

Sunil Jacob
3 min readFeb 5, 2021

A slow loading website is always frustrating. Well, there could be multiple factors which attribute to this behaviour. But the prime suspect for this is Latency.

The term Latency measure up to the time for data to be transmitted from the web server to the user’s computer and vice versa. This is measured in milliseconds. High latency causes the delay in page load speeds.

A decade ago, Amazon found that every 100ms of latency cost them 1% in sales

What matters is the hardware and network infrastructure which connects these points. Google cloud has a global network that spans 22 regions, 67 zones,40 points of presence, and 96 CDN edge nodes. It has a global fibre network connecting you to the world. In this series we will allude to different network service tiers available in GCP.

Google offers two types of network service tiers:

  1. Premium Tier: This is the coolest feature that Google offers. This tier uses Google’s extensive fiber network. The traffic stays on Google’s own network for as long as possible. This is known as cold-potato routing. This lowers the number of trace route hops, faster transport and network latency.
Courtesy: Tech Crunch

2. Standard Tier: In this tier the packet is going to stay more on public internet. This is called as hot-potato routing. As you can see in the above diagram, the packet takes more hops before reaching Google’s Point of Presence. This is what most other cloud providers are largely using.

Let’s get into action. For this we would create a two VM instances one with standard network tier and other with premium network tier respectively.

The network service tier can be selected in the networking tab while creating compute engine instances.

I also have created two compute engine VM’s, one which is uses standard network tier and the other which uses premium a network tier.

To check how many hops it would take to reach Google’s PoP, I have used

  • traceroute tool, which is a diagnostic tool used to track in real-time the pathway taken by a packet on an IP network from source to destination, reporting the IP addresses of all the routers it pinged in between

and check the ISP details:

In Figure 1 you can see that when we tracked the routes of the VM (vm-premium-tier ) which used the premium network tier, the packet reached the Google’s PoP in the 5th hop.

Figure 1

Figure 2 shows the path taken by the VM ( vm-standard-tier )which used the standard network tier. An additional 5 hops was needed to reach Google’s PoP

Figure 2

We can clearly see, in standard tier the packet stays in public internet for longer time. It takes longer time to enter Google’s PoP.

Hope this did explains the concept of the network service tiers. Please feel free to post your feedback/comments in the response section.

--

--

Sunil Jacob

Architect DevOps | ML Mentor | Kinesthetic Infra Engineer