AWS Storage Flashcards
What is a Storage Array?
Many hard drives installed inside of it, which they then create volumes. Volumes can divide data into different categories.
What is Bulk Storage?
Bulk storage is like a giant hard drive where you can upload almost any type of data. The data is accessed using an application service. There is no access to the underlying storage operating system. Examples of cloud bulk sotarge services include Dropbox, Google Drive, and Amazon S3.
What is Block Storage?
Block storage is like the storage used with a computer. The computer would see a volume where the operating system and applications can be installed.
Example, Amazon EBS is a block storage that attaches to an EC2 instance.
What does S3 stand for?
Simple Storage Service
What is S3?
Simplified Storage Service
Simplified Definition:
An online, bulk storage service you can access from almost any device.
AWS Definition:
Amzaon S3 has a simple web services interface that you can use to store and retrieve any amount of data, at any time, from anywhere on the web. It gives any user access to the same highly scalable, reliable, fast, inexpensive data storage infrastructure that Amazon uses to run its own global network of websites. The service aims to maximize benefits of scale and to pass those benefits on to users.
What is a Bucket?
Root-level “folders” created in S3.
What is a Folder?
Any “subfolder” you create in a bucket in S3.
What is an Object?
Files stored in a bucket or folder in S3.
What Region do you select when creating an S3 Bucket?
- When created a bucket, you must select a specifi region for it to exist in. This means any data you upload to the S3 bucket will be physically located in a data center in that region.
- Best practice is to select the region that is physically closest to you (to reduce transfer latency).
OR
- If you are serving files to a customer based in a certain area of the world, create the bucket in a region closest to your customers (to reduce latency for your customers).
S3 Bucket naming rules
- Bucket names must be unique across ALL of AWS
- Bucket names must be 3 to 63 characters in length.
- Bucket names can only contain lowercase letters, numbers, and hyphens.
- Bucket names must not be formated as an IP address (e.g. 192.168.5.4).
True or False: S3 sits within your VPC?
False. S3 sits outside of your VPC which is why all bucket names must be unique across all of AWS.
What are the 6 types of storage classes?
- Standard: frequently accessed
- Intelligent-Tiering: determines how you access data and moves to different classes accordingly.
- Standard-IA (Infrequent Access): Instant access, 3 availability zones (resiliance, ex. hurricane)
- One Zone-IA (infrequent Acess): Instance access, only one availability zone (NOT resiliant)
- Glacier: Long term archival. Several minutes to hours to access.
- Glacier Deep Archive: Retrieval time is 12 hours.
What are the traits of the Standard S3 storage class?
- Designed for general, all-purpose storage.
- The default storage option.
- 99.9999999% object durability (“11 nines”)
- 99.99% object availability
- The most expensive storage class.
What are the traits of the Standard - IA S3 storage class?
Standard IA (Infrequent Access)
- Designed for objects that you do not access frequently, but must be immediately avaialable when accessed (uses multiple Availability Zones).
- 99.99999999999% object durability (same as standard)
- 99.90% object availability (less than standard)
- Less expensive than the standard storage class.
What are the traits of the One Zone - IA S3 storage class?
One Zone - IA (Infrequent Access)
- Designed for objects that you do not access frequently, but must be immediately avaialable when accessed (only uses one Availability Zone).
- 99.99% object durability
- 99.50% object availability
- -20%less expensive than the Standard-IA storage class.