I'm using ECS Fargate to host containers in a service. The service is tied to the target group in order to load balance. https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-task-storage.html
This link mentions one can use EFS for persistent storage. IMO EFS is slow. EBS is faster and better. But I can't find a way to share EBS volume directly or indirectly(EBS attached to EC2) with a set on containers so all containers see the same data as well as can write to it and the storage persists even after the containers die
Is there a way to have common storage for all containers on Fargate(I don't mean ECS offering where tasks are hosted on EC2)?