How many cores does ECS Fargate have.

0

I am trying to run python multithreading in task form on ECS Fargate. How many cores does Fargate have per CPU?

daniel
asked 6 months ago500 views
2 Answers
0

Hello.

Although it is in Japanese, there was someone who was conducting a verification to check the number of CPU cores on ECS Fargate.
I think the following information will be helpful.
https://gist.github.com/nabeken/97a54cc98ae6892910df4b4b265b4fdd

profile picture
EXPERT
answered 6 months ago
0

Hi, thanks for reaching out. You can check the number of cores by running the below Python code on your task:

import os
print(os.cpu_count())

Or you can check it with the aws cli:

aws ecs describe-task-definition --task-definition my-task-def --query taskDefinition.cpu --output text

The number of cpu cores will vary depending on cpu size. I hope this helps.

AWS
Steve T
answered 6 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions