Elastic Block Storage Flashcards
EBS concepts
Think virtual hard drives
Can only be used with EC2
Tied to a single AZ
Provides a variety of choices for IOPS, throughput, and cost.
Can you create a snapshot from an EBS store?
Yes
Why is instance-store faster than EBS?
While EBS looks and feels like a directly attached store, it’s actually disconnected and rides over the network. Instance stores are directly attached to the VM and so do not suffer latency.
What are good use cases for instance store?
Local caching, buffers, and work areas.
Why should instance stores not be used for data that requires persistence?
Instance stores are ephemeral, so any data added to it will not survive an instance stop, or termination, unlike EBS.
What are some benefits of using EBS?
Cost-effective and easy backup strategy
Share data-sets with other users and accounts
Allows you to migrate a system to a new AZ or Region
Easily converts from unencrypted to encrypted.
Are snapshots full replications of data, or incremental?
Incremental, only the new bits are added, not the entire dataset. This is reflected in billing as well.
Since EBS snapshots are incremental, if you delete one snapshot, does that impact other snapshots?
No, AWS ensures consistency across all EBS snapshots, even when you delete the original snapshot. You would have to delete ALL snapshots to lose the data.