[AWS EC2] Instance Store - Ephemeral Disk (volatile disk) can be used for free
I feel like I periodically research “How much does it cost to use instance store a.k.a Ephemeral Disk (volatile disk) available on AWS EC2?”, but instance store can be used for free.
First, let’s read the official AWS documentation.
Most EC2 instances have a disk area called instance store (ephemeral store). Unlike EBS, this area has advantages such as no charges for disk I/O.
What is Instance Storage
• Features – Local disk of EC2 physical chassis – Size, number, HDD/SSD are predetermined by EC2 instance type
• Advantages – Free! – Any file system can be used – Less affected by network (latency and bandwidth) because it’s a local disk
• Cautions – Data is deleted when you stop the instance [Important] Data is not lost on reboot – No snapshot function – Cannot be attached to another EC2 instance
If you want to use instance store later, read the following article:
Finally, once you understand instance store, it would be good to grasp all the storage available on AWS next.
That’s all from the Gemba where I thought “Was the usage fee for AWS EC2 instance store free?”