Storage and Databases Flashcards
How do block-level storage volumes work?
Like a physical hard drive
What provides temporary block-level storage for an Amazon EC2 instance?
An instance store
What happens to the data in an instance store if you terminate the attached EC2 instance?
The data is deleted.
What service maintains an instance store even after the attached EC2 instance terminates?
Amazon Elastic Block Service (EBS) stores data on a separate drive from the host of the EC2 instance.
How do you back up data in an Amazon EBS volume?
Amazon EBS Snapshots back up data incrementally, first backing up everything and then only backing up changed data.
What three things make up an object in object storage?
Data, metadata, and key
What’s an important difference between block storage and object storage?
Block storage is incremental, only updating pieces that change. Object storage is total, updating the entire object when any piece changes.
What service provides object-level storage?
Amazon Simple Storage Service (S3)
What kind of data goes in S3 Standard storage? And how many Availability Zones does it use?
Designed for frequently accessed data, stored in three Availability Zones minimum.
What’s a key characteristic of S3 Standard-Infrequent Access (S3 Standard-IA)
For INfrequently accessed data, it has a lower storage price and a higher retrieval price. Stored in three Availability Zones minimum.
What’s a key characteristic of S3 One Zone-Infrequent Access (S3 One Zone-IA)?
Stores data in a single Availability Zone. Saves costs, but you need to be able to reproduce the data if that Availability Zone fails.
What’s a key characteristic of S3 Intelligent-Tiering?
Data that has unknown or changing access patterns. Has a monthly monitoring and automation fee per object. Automatically moves an object to IA if not accessed for 30 days. If accessed, moves to S3 Standard.
What’s the difference between S3 Glacier Instant Retrieval, Flexible Retrieval, and Deep Archive?
Instant Retrieval allows immediate access. Flexible Retrieval takes minutes to hours to retrieve, but costs less. Deep Archive takes up to 12 hours, and is least expensive.
What separates file storage from block storage and object storage?
File storage IS block storage, but using a local file system to organize files. File storage is for use cases where a large number of services and resources need to access the same data at the same time.
What service provides file storage?
Amazon Elastic File Storage (EFS)
What are key differences between Elastic Block Storage (EBS) and Elastic File Storage (EFS)?
EBS volumes store data in a single Availability Zone, and any EC2 instance must be in the same zone. EFS is a regional service. It stores data across multiple Availability Zones. EFS volumes can be accessed by on-premises servers using Amazon Direct Connect.
What is Amazon RDS?
A relational database service that uses SQL.
What kind of database is Amazon Aurora?
An enterprise-level relational database that replicates six copies of your data across three Availability Zones and continuously backs up your data to Amazon S3 (Simple Storage Service)
What kind of database is Amazon DynamoDB?
Serverless and automatically scaling key-value (non-relational) database
What service is useful for big data analytics and data warehousing?
Amazon Redshift
What is AWS DMS?
Amazon Web Services Data Migration Service, a tool to migrate databases from a source to a target, without taking the source offline.
What is Amazon DocumentDB?
A document database that supports MongoDB workloads
What is Amazon Neptune?
A graph database service
What is Amazon Quantum Ledger Database (QLDB)?
A ledger database that lets us review a complete history of all the changes that have been made to your application data.