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
and it was a mess that I never got to work properly.
63
63
64
-
#### The Case for AWS Fargate
64
+
#### The Case for AWS Batch on AWS Fargate, and AWS Fargate
65
65
If you're on the Fargate executor it may take ~2.5 minutes for a task to pop up, but at least it's a constant O(1) time.
66
66
This way, the concept of tracking DAG Landing Times becomes unnecessary.
67
67
If you have more than 2000 concurrent tasks (which is a lot) then you can always contact AWS to provide an increase in this soft-limit.
68
68
69
69
70
70
## AWS Batch v AWS ECS v AWS Fargate?
71
+
**I almost always recommend that you go the AWS Batch route**. Especially since, as of Dec 2020, AWS Batch supports Fargate deployments. So unless you need some very custom flexibility provided by ECS, or have a particular reason to use AWS Fargate directly, then go with AWS Batch.
72
+
71
73
`AWS Batch` - Is built on top of ECS, but has additional features for Batch-Job management. Including auto-scaling up and down servers on an ECS cluster based on jobs submitted to a queue. Generally easier to configure and setup than either option.
72
74
73
75
`AWS Fargate` - Is a serverless container orchestration service; comparable to a proprietary AWS version of Kubernetes. Launching a Fargate Task is like saying "I want these containers to be launched somewhere in the cloud with X CPU and Y memory, and I don't care about the server". AWS Fargate is built on top of AWS ECS, and is easier to manage and maintain. However, it provides less flexibility.
74
76
75
77
`AWS ECS` - Is known as "Elastic Container Service", which is a container orchestration service that uses a designated cluster of EC2 instances that you operate, own, and maintain.
76
78
77
-
I almost always recommend that you go the AWS Batch or AWS Fargate route unless you need some very custom flexibility provided by ECS.
| Start-up per task |Instantaneous 3s, if capacity available; otherwise 2-3 minutes to launch new server| 2-3 minutes per task; O(1) constant time | Instant 3s, or until capacity is available. |
82
-
| Maintenance | You patch the own, operate, and patch the servers | Serverless | You patch the own, operate, and patch the servers |
82
+
| Start-up per task |Combines both, depending on if the job queue is Fargate serverless | 2-3 minutes per task; O(1) constant time | Instant 3s, or until capacity is available. |
83
+
| Maintenance | You patch the own, operate, and patch the servers OR Serverless (as of Dec 2020)| Serverless | You patch the own, operate, and patch the servers |
83
84
| Capacity | Autoscales to configurable Max vCPUs in compute environment |~2000 containers. See AWS Limits | Fixed. Not auto-scaling. |
84
-
| Flexibility |High. Almost anything that you can do on an EC2 | Low. Can only do what AWS allows in Fargate | High. Almost anything that you can do on an EC2 |
85
-
| Fractional CPUs? |No. Each task has 1 vCPU. | Yes. A task can have 0.25 vCPUs. | Yes. A task can have 0.25 vCPUs. |
85
+
| Flexibility |Combines both, depending on if the job queue is Fargate serverless| Low. Can only do what AWS allows in Fargate | High. Almost anything that you can do on an EC2 |
86
+
| Fractional CPUs? |Yes, as of Dec 2020 a task can have 0.25 vCPUs.| Yes. A task can have 0.25 vCPUs. | Yes. A task can have 0.25 vCPUs. |
0 commit comments