MongoDB Docker Container on AWS ECS using EFS

Is it recommended that you have multiple MongoDB Docker containers in the AWS Elastic Container Service (ECS) that use the same AWFS Elastic File System (EFS)? What for? Why not?

+4
source share
1 answer

It will depend on your requirements. Basically, EFS implements NFSv4 protocols. NFS is usually slower than a block device. Did not check. But I think that EFS performance will be lower than EBS on a single SSD device. You can test your application using MongoDB on EFS. If performance is not a concern, it would be nice to use EFS.

0

Source: https://habr.com/ru/post/1657152/


All Articles