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
feita há 6 meses560 visualizações
2 Respostas
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
ESPECIALISTA
respondido há 6 meses
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
respondido há 6 meses

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas