Hey guys, in building my prefect flow, is it an op...
# prefect-server
c
Hey guys, in building my prefect flow, is it an option to only have one task execute in Fargate? e.g., ET run using docker Agent, and then the last task runs on Fargate?
k
Hey @Charles Leung, I'm not sure there is a first class way to do this currently, as a flow and it's tasks are tied to the flow's environment - so you may be better off calling a StartFlowRun task to kick off your Fargate stuff, even if it's a call to a flow with a single task for Fargate. Otherwise, you would likely need some custom tasks... which I would love to see if you're able to share!
c
thanks Kyle!