EBS

Definition

Elastic Block Store (EBS) is AWS's persistent storage solution that attaches to EC2 instances, providing reliable and scalable block storage for

Use Cases

Provider Equivalents

Frequently Asked Questions

What's the difference between Amazon EBS and instance store?
EBS is persistent block storage: data stays on the volume even if you stop or replace the EC2 instance (unless you choose to delete it on termination). Instance store is physically attached to the host and is temporary: data can be lost if the instance stops, terminates, or the host fails. Use EBS when you need durability; use instance store when you need very fast temporary storage and can tolerate data loss.
When should I use Amazon EBS?
Use EBS when you need a durable disk for an EC2 instance, such as for databases, application servers that store files locally, boot volumes, or workloads needing consistent low-latency storage. It’s a good fit when you want to back up with snapshots, resize volumes, or move a volume to another instance in the same Availability Zone.
How much does Amazon EBS cost?
EBS pricing typically depends on the volume type (for example, SSD vs HDD classes), the amount of provisioned storage (GB-month), and any additional performance provisioning (such as provisioned IOPS for certain volume types). You also pay for EBS snapshots (stored in S3) based on the amount of snapshot data stored, and there may be charges for data transfer in some scenarios. For exact numbers, use the AWS Pricing page and the AWS Pricing Calculator for your region and volume type.

Category: data

Difficulty: intermediate

Related Terms

See Also