© 2023 Hashnode
#load-balancer
Load Balancers are mandatory when you need to design a scalable backend system. In simple terms, Load Balancers are responsible to route user requests to a server that can service that request in the least amount of time and thus reducing l…
Introduction As with any other software developer, I have experienced a website that's slow to load or keeps crashing. It's frustrating, isn't it? The truth is, as website traffic increases, so do the…
AWS is a cloud-based platform that offers flexible and cost-efficient computing solutions. It provides various services, such as computing power, storage options, and databases that help businesses in…
The Context We will use the journey of a fictional startup to learn how load-balancing decisions are made at every phase of the growth of a startup. The journey is oversimplified to cater to a wide va…
1. Round Robin DNS (RRDNS) 2. Inbound proxy – Layer 7 load balancing 3. Inbound NAT – Layer 4 load balancing 4. DSR load balancing 1. Round Robin DNS (RRDNS)→ This is the simplest load-balancing metho…
Load balancing is a core networking solution used to distribute traffic across servers. These servers can be in one or several locations. In other words, It is the process of evenly spreading incoming…
We were given a task for our holiday challenge in AltSchool to : Set up 2 EC2 instances on AWS(use free tier). Deploy an Nginx web server on these instances(you are free to use Ansible)uh Set up an…
My first encounter with a load balancer was when I was studying for my AWS practitioner certification exams. At the time, I was really finding it difficult to grasp the concept. But with time, I came …
OSI Model:- Physical Layer :- Physical Layer used transfer bit stream over wire3 Data Link Layer : Defines the format of data on the network Network Layer :- Decides which physical path the data wil…
Welcome back! Let's dive right in. Project Prerequisites AWS account Knowledge of creating VPC, EC2, Target Group, Load Balancer, etc. Introduction This is a guide on how to manually deploy a website hosted on an EC2 instance which can…