All Questions
Tagged with aws-fargate load-balancing
5
questions
1
vote
0
answers
127
views
ECS task to VPC endpoint/NAT Gateway routing
we have an ECS task that makes Rest API calls of two types: /path1 and /path2 in a Private subnet. We route the requests to Internet Gateway through a NAT gateway present in a public subnet.
Flow: ECS ...
3
votes
1
answer
3k
views
AWS ECS Fargate Target Group Failing HealthChecks
The SpringBoot application is running as an ECS Task in a ECS Service of an AWS Fargate Cluster. The ECS Service is LoadBalanced as such the Tasks spawned by the Services are automatically registered ...
4
votes
2
answers
5k
views
Do I need an internal Load Balancer for my ECS Services?
I have an ECS cluster with 3 services(FARGATE), the 3 services are in private subnets. 1 is the web app that is publicly accessible through an Internet-facing Load Balancer and the 2 others are only ...
3
votes
1
answer
316
views
Autoscaling and connection routing on AWS ECS for services with a one-to-one client/server relation
I want to deploy an interactive rendering service that uses the WebSocket protocol. The service is containerized and can serve up to N (let's say 1 <= N <= 10) clients. The reason for the small ...
1
vote
0
answers
468
views
How are load balancers, health checks, and autoscalers supposed to handle surges?
I have a service which looks like: Internet -> Load Balancer -> Instances
What seems to be happening in my service is the following scenario:
A large surge of user traffic comes in, more than the ...