I’m getting the following error occasionally when ...
# ask-community
a
I’m getting the following error occasionally when running a Prefect flow using Dask CloudProvider.
Copy code
ClientException('An error occurred (ClientException) when calling the RegisterTaskDefinition operation: Too many concurrent attempts to create a new revision of the specified family.')
k
Hey @Andrew Hannigan, see this thread . This is a known issue for ECS.
a
Thanks @Kevin Kho - reading through it looks a solution is still pending. My takeaway is that the best thing to try now is to set the env variables:
Copy code
- Name: AWS_RETRY_MODE
  Value: adaptive
- Name: AWS_MAX_ATTEMPTS
  Value: 100
k
Yes it is pending unfortunately.
a
Does that sound right to you?
k
Yep that sounds right to me!
a
Okay! Will give those env variables a try, thanks!