Tuesday, May 2, 2023

AWS Fargate

AWS Fargate 

AWS Fargate is a serverless computing engine which eliminates the need for end-users to manage the servers that host containers. A user needs to package the application in containers, specify the Operating System, CPU, and memory requirements, configure networking and IAM policies. Servers are provisioned automatically by Fargate using the above specifications provided by user. 

It has 3 main components

  • Cluster is a logical group of tasks or services is an Amazon ECS.
  • Task Definition is a text file that describes the application containers.
  • Task: A running instance of a task definition
  • Services: One or more tasks 

No comments:

Post a Comment

SpringBoot Application Event Listeners

When a spring boot application starts few events occurs in below order ApplicationStartingEvent ApplicationEnvironmentPreparedEvent Applicat...