AWS EFS vs EBS vs S3 (differences & when to use?)

前端 未结 10 1405
挽巷
挽巷 2020-11-28 17:28

As per the title of this question, what are the practical differences between AWS EFS, EBS and S3?

My understanding of each:

  • S3 is a storage facility a
10条回答
  •  遥遥无期
    2020-11-28 17:33

    EBS is simple - block level storage which can be attached to an instance from same AZ, and can survive irrespective of instance life.

    However, interesting difference is between EFS and S3, and to identify proper use cases for it.

    Cost: EFS is approximately 10 times costly than S3.

    Usecases:

    • Whenever we have thousands of instances who needs to process file simultaneously EFS is recommended over S3.
    • Also note that S3 is object based storage while EFS is file based it implies that whenever we have requirement that files are updated continuously (refreshed) we should use EFS.
    • S3 is eventually consistent while EFS is strong consistent. In case you can't afford eventual consistency, you should use EFS

提交回复
热议问题