AWS EBS Flashcards
What does EBS stand for?
Elastic Block Storage
What are EBS Volumes?
Storage volumes you can attach to your EC2 instances.
You use them the same way you would use any system disk: . Create a file system . Run a database . Run an operating system . Store data . Install applications
What are EBS Volumes used for?
You use them the same way you would use any system disk: . Create a file system . Run a database . Run an operating system . Store data . Install applications
EBS volumes are used for what mission critical reasons?
- Production Workloads
Designed for mission-critical workloads. - Highly Available
Automatically replicated within a single Availability Zone to protect against hardware failures. - Scalable
Dynamically increase capacity and change the volume type with no downtime or performance impact to your live systems.
What are the 4 types of EBS SSD Volumes?
- gp2
- gp3
- io1
- io2
This EBS SSD volume type is:
. Suitable for boot disks and general applications
. Provides up to 16K IOPS per volume
. Provides up to 99.9% durability
gp2 - General Purpose SSD
This EBS SSD volume type is:
. Suitable for high performance applications
. Provides predictable 3K IOPS baseline performance and 125 MiB/s regardless of volume size.
. Provides up to 99.9% durablility
gp3 - General Purpose SSD
This EBS SSD volume type is: . Suitable for OLTP and latency-sensitive applications . Provides 50 IOPS/GiB . Provides up to 64K IOPS per volume . High performance and most expensive . Up to 99.9% durability
io1 - Provisioned IOPS SSD
This EBS SSD volume type is:
. Suitable for OLTP and latency-sensitive applications
. Provides 500 IOPS/GiB
. Provides up to 64K IOPS per volume
. Up to 99.999% durability
. Latest generation Provisioned IOPS volume
io2 - Provisioned IOPS SSD
What is the purpose of an EBS HDD volume?
To provide highly available and scalable storage volumes that you can attach to an EC2 instance.
What are the 2 EBS HDD volume types?
st1 - Throughput Optimized HDD
sc1 - Cold HDD
What does the EBS HDD volume type “st1” provide?
st1 is a Throughput Optimized HDD. . Suitable for big data, data warehouses and ETL . Max throughput is 500 MiB/s per volume . Cannot be a boot volume . Up to 99.9% durability
What does the EBS HDD volume type “sc1” provide?
sc1 - Cold HDD . Max throughput of 250 MiB/s per volume . Less frequently access data . Cannot be a boot volume . Lowest cost . Up to 99.9% durability
For EBS Volumnes and Snapshots, where are the volumes and snapshots stored?
Volumes exist on the EBS (Elastic Bock Storage).
Snapshots exist on S3.
______________ are point-in-time photographs of volumes and are incremental by nature.
Snapshots
True or False: The first Snapshot you create will take very little time.
False, the first snapshot will take some time to create. The larger the instance being initially snapshot, the longer the time to take it.
For consistent snapshots, you should _______.
For consistent snapshots, you should stop the instance and detach the volume.
In order to share snapshots between AWS accounts as well as between regions, you need to do this.
First, copy the snapshot to the target region.
True or False; You can resize EBS volumes on the fly as well as changing the volume types.
True
What are Volumes?
Volumes exist on EBS.
Volumes are simply virtual hard disks. You need a minimum of 1 volume per EC2 instance. This is called the root device volume.
What do you call the 1st default volume on an EC2 instance?
Root device volume.
What are the 4 key points regarding Snapshots?
- Snapshots exist on S3
- Snapshots are point in time.
- Snapshots are incremental.
- The first snapshot may take some time to create as there is no previous point-in-time copy.
What are the 3 tips for Snapshots?
- Consistent Snapshots
Snapshots only capture data that has been written to your Amazon EBS volume, which might exclude any data that has been locally cached by your application or OS. For a consistent snapshot, it is recommend you stop the instance and take a snap. - Encrypted Snapshots
If you take a snapshot of an encrypted EBS volume, the snapshot will be encrypted automatically. - Sharing Snapshots
You can share snapshots, but only in the region in which they were created. To share to other regions, you will need to copy them to the destination region first.
Describe the feature “Consistent Snapshots”.
Consistent Snapshots
Snapshots only capture data that has been written to your Amazon EBS volume, which might exclude any data that has been locally cached by your application or OS. For a consistent snapshot, it is recommend you stop the instance and take a snap.