Challenge 2 - Provision your Front Door

< Previous Challenge [1]  -  Home  -  Next Challenge [3] >

Introduction

Now that we have the site up and running, it’s time to start addressing the situation. Contoso Masks website has started to trend and LOTS of people are hitting the website from all over the world. Users are complaining about either taking a really long time to load the website or not able to load at all.

Before we go any further, we are focusing on aspects of the experience that is controlled “North” or above the website itself. There are limits to what scaling the website with hardware will help, and we’re going to focus on those aspects. We also aren’t focusing on regional data compliance issues (GDPR for example).

Handling a significant amount of users

When a website experience a significant amount of load, every aspect of that goes into handling a request gets stressed. One thing in particular is how to handle the sheer number of users, or put another way, how to handle the sheer number of connections. Unless there is specialized networking hardware in play, you can very quickly run into Port Exhaustion. This is where the physical number of connections can no longer be handled by your available infrastructure.

Azure Front Door is considered a Layer 7 - Proxy Server that implements Split TCP, a technique that lets the specialized hardware of the service to absorb all the connections while managing a small pool of persistent (relative to the load) to your website. Not only does this prevent Port Exhaustion, it also reduces the CPU and Memory resources used to constantly establishing and finish connections for each client.

Global Reach of a website

For the purpose of this description, lets pretend Contoso Masks’ website is hosted in the Central US Azure Data Center only, somewhere the State of Iowa. If a user is accessing the website in the middle of the United States, most likely has a descent experience. But what happens when the website is accessed from Germany?

When talking about the performance characteristic of a single resource request (a single GET/POST/etc…), there are 7 numbers that used to describe it:

  1. Blocked - A Web Browser generally defaults the number of open connections to a given DNS Name to 2. If 2 other resources are being requested for the same DNS Name, the Web Browser will “block” the request.
  2. DNS Lookup - This is the time it takes the browser to perform a DNS lookup, or translating www.contosomasks.com to an IP Address.
  3. Connect - How long does it take for the Web Browser to establish a connection to “server” for the request. Server is the external thing that is responding to the request. HINT - This isn’t always your webserver.
  4. TLS Handshake - How long does it take your Web Browser to safely establish a secure tunnel to the server. The Transport Layer Security (TLS) Handshake Protocol is the established process to safely ensure when you go to www.contosomasks.com, you really are going to the real one. (The internet can be a very dark place). The issue is, this is several round trips from Web Browser to server
    1. Man in the middle attack is one example of what this protects.
  5. Send Request - Time to transmit the HTTP Request.
  6. Wait for Response - Time for the First Byte of the response to be received.
    1. Sometimes referred to as Time to First Byte [TTFB]
  7. Receive Response - Time for full payload to receive.
    1. Sometimes referred to as Time to Last Byte [TTLB]

Things you control with code of your website:

Things you can’t control

Where Front Door helps

First, take a read of the What is a CDN? article, as Azure Front Door is a Dynamic Site Acceleration CDN Service. And since Microsoft is the 2nd largest Telecommunications company by measure of the amount of Dark Fibre run around the planet, you can use this as your accelerated pathway to your website.

There are 2 primary benefits:

  1. By moving the “Server” closest to the user (the Point of Presence), the per user Connect (#2) and TLS Handshake (#3) happens closest to the user. By using Split TCP and pools of persistent, secure connections to your website from the Points of Presence, you can normalize the aspects of each request by using Front Door.
    • Here are the before and after Front door implementations for a website, using a Germany => Central US test to illustrate:
    • Before Front Door: alt
    • After Front Door: alt
  2. For global (and regional performance), taking advantage of the private pathing thru Microsoft’s network provides a way to predictably accelerate requests to and from your website. Public internet routing is reliable from the aspect of getting your requests back and forth, but unpredictable from a performance perspective.

The dangers of caching

You will notice we aren’t talking about caching yet, which is the concept of storing a response from your website for a configured period of time, and using that for future requests. Caching can also include the client, where it either uses a fixed time or a checksum like value, called an eTag, that can be verified for any changes. It can greatly increase the end client performance and website utilizations, but there are caveats. CDN level Caching caches the entire HTTP request, including cookies and headers. Front Door can cache, but if the website was designed for this kind of interaction, you have to be extremely thoughtful and deliberate about what you cache and what you don’t.

Description

For this challenge we are going to:

  1. Provision a new Front Door resource for your website
  2. Create a Custom Domain in Front Door for you website with SSL, called frontdoor.SITENAME.contosomasks.com, where SITENAME is what you specified in Challenge 0.
    1. IMPORTANT - Normally you migrate a DNS Name, like www, to Front Door. For comparison purposes, we are using a different name for the Front Door implementation.

Success Criteria

Learning Resources

Advanced Challenges