Hi! Thanks for the new features for the EcsRunLaun...
# deployment-ecs
m
Hi! Thanks for the new features for the EcsRunLauncher, they look very promising. I am currently trying to set up the cpu & memory per job, but I cannot get it to work. I have added the tags and they show up in Dagit. However when I launch a run the cpu & memory (of the dagster-run task definition) are still the same as the cpu & memory of the dagster-pipelines task definition. Am I missing something here?
j
The cpu and memory get applied as a
containerOverride
when we run the task instead of as part of the original task definition. If you describe the task (not the task definition), do you see the values you set? https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ContainerOverride.html https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_DescribeTasks.html
m
It works. Thanks!