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

前端 未结 10 1406
挽巷
挽巷 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:36

    Amazon EBS provides block level storage - It is used to create a filesystem on it and store files. Amazon EFS - its shared storage system similar like NAS/SAN. You need to mount it to unix server and use it. Amazon S3 - It is object based storage where each item is stored with a http URL.

    One of the difference is - EBS can be attached to 1 instance at a time and EFS can be attached to multiple instances that why shared storage. S2 plain object storage cannot be mounted.

提交回复
热议问题