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
posta 6 mesi fa560 visualizzazioni
2 Risposte
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
ESPERTO
con risposta 6 mesi fa
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
con risposta 6 mesi fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande