Samuel Hinton
04/04/2024, 4:28 AMECSTask
. We're using it such that a flow (running locally) can spin up numerous ECS tasks that retrain our ML models. The images that are spun up have no knowledge of prefect, flows, tasks, etc, they just do their job and then close.
What would be the right way to migrate this to the new methodology? I worry that using an ECS worker might not be what we want - after all, its not the flow itself that needs to be spun up in cloud infra, its tasks within the flow itselfNate
04/04/2024, 2:07 PM@flow
def foo():
for container_spec in containers:
ECSTask(**container_spec).run(...)
Samuel Hinton
04/11/2024, 12:15 AMPaula Lasalas
06/28/2024, 9:10 PMPaula Lasalas
06/28/2024, 9:12 PMNate
06/28/2024, 9:20 PMPaula Lasalas
06/28/2024, 9:30 PMprefect-aws==0.4.6
for example, we’ll be able to use ECSTask after deprecation on September, right?Nate
06/28/2024, 9:51 PM