You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 04-cloud/aws/09-elb/demos/03-web-tier-deploy/readme.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Demo
2
2
3
-
We're going to SSH into web1 and deploy the web front end using `Docker`. We're then going to browse directly to web1's public IP address and verify that the web front end is actually working.
3
+
We're going to SSH into web1 and deploy the web front end using `Docker`. We're then going to browse directly to web1's public IP address and verify that the web frontend is actually working.
Copy file name to clipboardExpand all lines: 04-cloud/aws/09-elb/readme.md
+22-2Lines changed: 22 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,26 @@ Right now, we need to SSH into each machine to install Docker. We can avoid this
50
50
51
51
## Creating and HTTP Target Group
52
52
53
+
### What is a Target Group?
54
+
55
+
A target group in AWS is a key component of Elastic Load Balancing (ELB) that serves as a logical grouping of targets to which traffic can be routed. Here are the main points about target groups:
56
+
57
+
1. Purpose: Target groups are used to distribute incoming traffic across multiple targets, such as EC2 instances, IP addresses, or Lambda functions.
58
+
59
+
2. Load Balancer Association: They are associated with Application Load Balancers, Network Load Balancers, or Gateway Load Balancers to define where traffic should be directed.
60
+
61
+
3. Health Checks: Target groups allow you to configure health checks to ensure that traffic is only routed to healthy targets.
62
+
63
+
4. Routing Rules: You can create routing rules in your load balancer to direct specific types of requests to different target groups.
64
+
65
+
5. Auto Scaling Integration: Target groups can be used with Auto Scaling groups to automatically register or deregister instances as they are launched or terminated.
66
+
67
+
6. Flexibility: You can register the same target with multiple target groups, allowing for flexible traffic distribution strategies.
68
+
69
+
7. Attributes: Target groups have configurable attributes such as deregistration delay, load balancing algorithm, and stickiness settings.
70
+
71
+
8. Monitoring: They provide metrics and health status information for your targets, helping you monitor the performance of your application.
72
+
53
73
### Supported Protocols
54
74
55
75
- HTTP
@@ -117,11 +137,11 @@ We're going to deploy the web front end on `web2` and `web3` and add those insta
117
137
118
138
### Stickiness Duration
119
139
120
-
- How long load balancer will maintain sticky session between clinet and target
140
+
- How long load balancer will maintain sticky session between client and target
121
141
- Load balancer sets a browser cookie with a unique, encrypted value
122
142
- Client sends back the cookie with each subsequent request
0 commit comments