An Overview of AWS Global Infrastructure Part-1
Mahmudul Hasan Nisat
Posted on November 30, 2024
Ever wandered? How Regions & Zones Shape Our Cloud Experience (For example, have you ever wondered how the internet delivers your favorite movies and games so quickly? It is like magic, and different cloud vendors are the magicians working behind the scenes.)
Now you might say, What do you mean by region, zones, and edge locations? Well, before that, we have to understand what the AWS Global Infrastructure is!!
It's basically globally distributed hardware and data centers that are physically networked together to act as one large resource for the end customer.
The AWS Global Infrastructure is made up of the following resources:
- 32 Launched Regions
- 102 Availibility Zones
- 115 Direct Connection Locations
- 550+ Points of Presence
- 35 Local Zone
- 29 Wavelength Zone
1. AWS Regions: The image above gives you a good idea of what we are referring to as "region." Though I'll tell you, Regions are geographic locations worldwide where AWS hosts its data centers.
Each AWS Region is named after the region in which it is located. For example, in the United States, there is a Region in Northern Virginia called the Northern Virginia Region. In order to better serve its clients, AWS is constantly growing, with regions in Asia Pacific, Canada, Europe, the Middle East, and South America.
Every AWS region has a region code and a geographical name. Here are some example of region codes:
us-east-1: This is the first Region in the eastern United States, established in 2006. The geographical name for this region is N. Virginia.
ap-northeast-1: This region is known geographically as Tokyo. It was the first region that was created in the northeast of Asia Pacific.
The AWS documentation provides a list of the AWS regions and their region codes.
Each AWS region is separate from the others. To put it another way, your data is never copied between regions without your express permission.
Choosing the Right AWS Region is one of the most important parts of AWS. Here's how we can choose the right region for us:
Consider four main aspects when deciding which AWS region to host your applications and workloads: latency, price, service availability, and compliance.
Latency: Choosing a region that is close to your user base will help us to prevent long wait times for the customers. Synchronous applications such as gaming, telephony, WebSockets, and IoT are significantly affected by higher latency, but even asynchronous workloads, such as e-commerce applications, can suffer from an impact on user connectivity.
Price: Prices may vary from one region to another. Internet connectivity, the cost of imported equipment, customs, real estate, and other factors can all have an impact on regional pricing.
Service accessibility: Not all services may be accessible in all regions. There is a table in the AWS documentation that lists the regions and the services that are offered in each, click here. If any service is accessible in every region, then it'll be labeled as "Global"
Data compliance: Enterprise businesses frequently have to abide by laws requiring that client information be kept in a particular location. If appropriate, pick a region that satisfies your compliance needs.
2. Availability Zones: An Availability Zone is a separate datacenter with redundant power, networking, and connectivity within an AWS region. Typically, a region has three Availability Zones, but the US_EAST-1 region has 6 AZs (the most Availability Zones of any region).
These Zones are super close, just 50 to 100 kilometers away from each other.
Here we can see AZ and LZ (Local Zone).
A Local Zone is an extension of an AWS Region that is geographically close to the users. (We'll talk about it in the later blog).
AWS keep copies of various items, including videos, music, and more. When a user requests something, AWS retrieves it from the nearest pit stop and delivers the content faster to the user. Datacenters within a region will be isolated from one another. However, they will be close enough to ensure low latency.
Why Availability Zones are important ?
Availability Zones (AZs) in AWS are important for ensuring high availability, fault tolerance, and scalability. They are isolated data centers within a region that help protect against failures, improve disaster recovery, and allow for horizontal scaling. By distributing resources across multiple AZs, applications can stay online during failures, improve data durability, and handle traffic spikes efficiently.
AZs also have a code name. Since they’re located inside Regions, they can be addressed by adding a letter to the end of the Region code name. For example:
us-east-1a: an AZ in us-east-1 (Northern Virginia Region)
sa-east-1b: an AZ in sa-east-1 (São Paulo Region in South America)
There's another thing: an availability zone is also linked to a subnet.
When we are launching resources, we do not select the AZ. We select the Subnet that is connected to the AZ.
Wrap Up
Depending on the service we use, we need to choose the right Region or AZ for your workload. In the next unit, we'll learn all the other aspects of AWS Global Infrastructure.
Posted on November 30, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.