I am new to AWS and trying to understand what is Amazon EBS and instance store and why is it needed ?
Asked
Active
Viewed 520 times
-2
-
1[Benefits of EBS vs. instance-store (and vice-versa)](https://stackoverflow.com/questions/3630506/benefits-of-ebs-vs-instance-store-and-vice-versa) – stdunbar Jul 16 '18 at 14:54
1 Answers
1
The simple rule of thumb is:
Use Amazon EBS unless you have a specific reason to use Instance Store
Instance Store is mostly an older technology from the days before EBS. See amazon ec2 - Benefits of EBS vs. instance-store (and vice-versa) - Stack Overflow for information about the differences.
A few reasons you might choose Instance Store are:
- Instances are totally ephemeral and you will never need to snapshot/restore their disks
- You need really fast storage, since Instance Store is locally attached
- You're particularly cheap, and you'd rather spend several hours of your time saving a few cents on storage

John Rotenstein
- 241,921
- 22
- 380
- 470