* Update title tags and meta desc for Templates * Update title tags and meta desc for Learn * Update title tags, meta desc, and H1s for Case Studies * Update themes/default/content/learn/abstraction-encapsulation/_index.md Co-authored-by: susan evans <susan.ra.evans@gmail.com> * Update themes/default/content/learn/embedding-pulumi/_index.md Co-authored-by: susan evans <susan.ra.evans@gmail.com> * Update themes/default/content/learn/embedding-pulumi/building-api/index.md Co-authored-by: susan evans <susan.ra.evans@gmail.com> * Update themes/default/content/learn/building-with-pulumi/stack-references/index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/container-service/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/kubernetes/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/serverless-application/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/virtual-machine/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/static-website/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update atlassian.md * Update index.md --------- Co-authored-by: susan evans <susan.ra.evans@gmail.com> Co-authored-by: Sean Holung <sean.holung@gmail.com>
1.6 KiB
title_tag, title, meta_desc, layout
title_tag | title | meta_desc | layout |
---|---|---|---|
What is AWS Fargate? | Fargate | AWS Fargate is a serverless compute product from AWS, designed for use with containerized workloads. | glossary/single |
Definition
AWS Fargate is a serverless compute platform, allowing you to run your application without the need to directly provision and manage EC2 instances. Unlike AWS Lambda, which is designed to execute code directly, Fargate works alongside AWS Elastic Container Service (ECS) or Elastic Kubernetes Service (EKS) to run containerized applications.
An application running on Fargate consists of multiple components. The overarching component is called a cluster, and it includes a grouping of tasks and services that make up your application. The task definition describes the parameters for your application, such as which containers to run, what operating system should be used, and the ports the application will use. A task is an instance of this definition running inside of your cluster, either by itself or as part of a service. The service component is what maintains the scheduling of your tasks, bringing up as many instances of that task as you defined and restarting them if one goes down.
Use Cases
The low operational overhead involved in using Fargate, as well as the ease of splitting up components into isolated task definitions, makes it a great tool for applications built as groupings of microservices that require more complexity than AWS Lambda can support.