Vamsi Reddy
05/24/2022, 2:33 PMRUN_CONFIG = ECSRun(
labels=["dev"],
task_role_arn="arn:aws:iam::xxxxx:role/prefectTaskRole",
execution_role_arn="arn:aws:iam::xxxxx:role/prefectECSAgentTaskExecutionRole",
image="<http://xxxxxx.dkr.ecr.us-east-1.amazonaws.com/prefect-orchestration:latest|xxxxxx.dkr.ecr.us-east-1.amazonaws.com/prefect-orchestration:latest>", # this is our custom image that also has our flows
run_task_kwargs=dict(cluster="prefectEcsClusterDev", launchType="FARGATE", overrides=dict(
containerOverrides=[
dict(
name="flow",
cpu=4096,
memory=8192,
)])),
cpu=4096, #tried specifying here but still no luck
memory=8192
)
Kevin Kho
ECSRun(…)
will already have the highest priority and take effect. Did you re-register?Vamsi Reddy
05/24/2022, 2:57 PMKevin Kho
Vamsi Reddy
05/24/2022, 3:03 PMKevin Kho
Vamsi Reddy
05/24/2022, 4:08 PMKevin Kho
Vamsi Reddy
05/24/2022, 4:22 PMKevin Kho
Vamsi Reddy
05/24/2022, 4:24 PMKevin Kho
Vamsi Reddy
05/24/2022, 4:29 PMKevin Kho