Hi All, if I want to build an image for dask clust...
# prefect-community
m
Hi All, if I want to build an image for dask cluster on fargate, would extending
prefecthq/prefect
and pip install my source code in the image be enough?
k
Yes for sure. That’s the most stable way to go about it
m
@Kevin Kho Just to make sure, internally in the
prefecthq/prefect
image, it contains the logic to spin up a dask cluster to be connected?
k
No that is in the Flow definition when you do:
flow.executor = DaskExecutor(...)
and then you can pass the
FargateCluster
into there and it’s created on the fly
m
Gotcha, I think I understand, thanks again for your help.
👍 1