3 Ağustos 2021 Salı

Amazon Web Service (AWS) Fargate - Serverless Compute Engine

Giriş
Bazı özellikleri şöyle. Yani Fargate ECS veya EKS üzerinde çalışıyor
AWS Fargate is a serverless compute engine for containers that work with both AWS ECS and AWS EKS. Fargate makes it easy for you to focus on designing and building your applications instead of managing the infrastructure that runs them.

- Run containers without having to provision, configure, manage servers or clusters
- Auto-scaling based on CPU/Memory utilization metrics which are auto-generated
- High Availability
- Does not support GPUs
- Support workloads requiring less than 10 GB of disk space per container
- Support workloads requiring less than 4 vCPU or 30 GB memory per container
- High-Cost Solution
- No out-of-box setup for logs, alarms, and dashboards
AWS Lambda vs AWS Fargate
Temel fark şöyle. AWS Lambda kısa süreli, daha az bellek gerektiren işler içindir. AWS Fargate ise daha fazla kaynak gerektiren ve sürekli çalışan sunucular gibi işlere uygundur

When to select Lambda
Açıklaması şöyle
- When you have event-driven workloads, that is, when the application needs to trigger action on an event.
- When your application requires the ability to handle unknown demand.
- When you need managed operational and administrative activities like monitoring fleet health, applying security patches to the underlying compute resources, monitoring and logging your code, etc.
- When you need managed provisioning, capacity scaling, high availability, and utilization.
- When your application deployment package size ≤ 50 MB and execution time ≤ 15 minutes.
- When you are focused on cost optimization.

Lambda is designed for compute applications that are triggered by an event. For example, an SNS message being received, a call to an API, when an S3 object is updated, a cron job, etc.
When to select Fargate
Açıklaması şöyle
- When your application is latency-sensitive.
- When your application needs inter-container communication or is storage-intensive.
- When you need support for long-running scheduled jobs (>15 mins).
- When your application serves predictable high customer traffic.
- When you need more choices on the runtime environment.
- When you have a large/batch workload and you’re looking for less operation load.
- When you don’t need complete control of your compute instances but need control of the compute environment — CPU and memory configs.

Streaming, high-frequency polling, or caching applications are a great fit for Fargate, allowing longer live persistence of data, without having to manage hardware directly.


Hiç yorum yok:

Yorum Gönder