Storage & Content Delivery Flashcards

1
Q

S3 is a highly ____ and ___ cloud ____ service that stores ____ within ____

A

scalable, available, storage, objects, ‘buckets’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

An S3 _____ is similar to a ______

A

‘Bucket’, directory (file folder)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

S3 _____ store _____ which consist of ___, and also stores _____.

A

buckets, objects (or files), data, metadata

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

_____ and _____ are 2 very different aspects of data accessibility

A

Durability, Availability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Durability:

A

“will my data be there tomorrow?”; important so your objects are never lost or compromised. AWS S3 standard is designed for 11 ‘9’s of durability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Availability:

A

“how quickly can I access my data?”; important so you can access your data quickly when you need it. AWS S3 standard for availability is 99.99%

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

S3 achieves high ____ and _____ by replicating _____ data across mulitple ___

A

Durability, availability, bucket, servers
- single or multi region

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

You can set the security (public access) for S3 at the _____ level or individual ____ level, using ___ ___ ___, _____ policies, or ____ _____ policies, or all three).

A

bucket, object, access control lists (ACLs), Bucket, access point

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

(S3) You can enable ______ to create multiple _____ of your objects (files)

A

versioning, versions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

(S3) You can use ____ ____ to track (log) the _____ to your buckets and objects, so you can see the root cause of issues or track any suspicious activity.

A

access logs, access

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

S3 is a ______ service but the bucket name is _____ unique

A

regional, global

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

S3 ______ (storage class) is recommended for frequently accessed data. It is general-purpose storage; data is stored across _____ _____; and has low latency and high _______

A

Standard, multiple AZs, throughput

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

S3 ____ _____ (storage class) automatically moves your data to the most ___ _____ storage class (based how you access that data)

A

Intelligent Tiering, cost-effective
- recommended for data with unknown or changing access patterns
- automatic cost savings, no retrieval fees, data stored across multiple availability zones.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

S3 Standard - ____ ____ (storage class) is recommended for ___ ___ ____ ____ data, that can be accessed in milliseconds when needed.

A

Infrequent Access (IA), infrequently accessed, long-lived
- Data is stored across multiple AZs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

S3 ___ ___ ___ _____ (storage class) is recommended for data that can be re-created, ___ ____, and availability and durability are not essential

A

One Zone, Infrequent Access (IA), infrequently accessed,
- like S3 Standard-IA, but data stored in a single AZ
- costs 20% less
- still accessed in milliseconds

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

S3 ____ (storage class) is recommended for long-term backups and archival. Data retrieval takes ____ and has 3 options: ___ ____ and ____.

A

Glacier (S3 Glacier Flexible Retrieval), longer, 1-5 min; 3-5 hours; 5-12 hours.
- data stored across multiple AZs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

S3 ___ ___ ___ is recommended for long-term _____ of data accessed only ____ or _____ a year. Good for retaining data for ____ _____

A

Glacier Deep Archive, archival, once or twice a year, regulatory compliance
- longer access times than S3 Glacier

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

S3 Outposts is good for data that needs to be kept ____ _____.

A

On-premises

  • only one single storage class
  • can store data across multiple devices and servers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

4 Use cases for S3:

A
  1. Static Websites
    - deploy static websites to S3 and use CloudFront for global distribution
  2. Data Archive
    - archive data using Amazon Glacier as a storage option
  3. Analytics Systems
    - store data in S3 for use with analytics services like Redshift (data warehousing solution) and Athena (uses SQL to query data in S3)
  4. Mobile Applications
    - mobile application users can upload files to S3 bucket using S3 transfer acceleration
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

(S3) Objects can be ____ or _____

A

public, private

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

You can upload objects via the ___ ____, the ____, or programmatically from within code using ____.

A

AWS console, CLI, SDKs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

All EC2 Instances must have a root drive: either an ___ Volume or an ____ _____ Volume

A

EBS, Instance Store

23
Q

EBS stands for ____ ____ _____

A

Elastic Block Store

24
Q

You can attach multiple ____ volumes to a single ____ instance

25
3 different types of EC2 storage:
EBS, EC2 Instance Store, EFS (Elastic File System)
26
EBS is a storage device that can be ___ or ____ from your EC2 Instance. Data is _____ when the instance is not running
Attached, removed, persistent
27
An EBS _____ can only be attached to one _____ in the same ___
volume, instance, AZ, (can’t plug a flash drive into multiple computers)
28
You can have ____ EBS _____ on a single instance
multiple, volumes (multiple flash drives plugged in)
29
EC2 Instance store is ____ directly to the ____ ______ and cannot be ______
directly, physical hardware (the host computer) and cannot be removed.
30
The EC2 Instance store and the ___ ____ exist on the same machine, and data is _____
EC2 Instance, not persistent (are ephemeral)
31
EC2 Instance store volumes are _____ with higher __ _____ and lower ____
faster with higher I/O speeds (throughput) - lower latency
32
EC2 Instance store volumes are recommended for ______ storage needs
Temporary storage needs
33
___ is a _____ network file system for sharing files , and only supports the ____ file system
EFS, serverless, Linux (like dropbox for your EC2 instance)
34
EFS stands for:
Elastic File System
35
EFS is like a _____ _____ that can be associated with many different ______
shared drive, instances
36
EFS is accessible across different ____ in the same ____ and is ___ expensive than EBS
AZs, region, more
37
EFS is Recommended when business-critical applications need _____ ______
shared directories
38
Storage Gateway is a _____ _____ ______, that combines/connects ____ storage and ____ ____ storage
hybrid storage service, cloud, on-premises
39
____ _____ is recommended for moving backups to the cloud; reducing costs for hybrid cloud storage; low latency access to data
Storage Gateway
40
_____ is a ‘catch all’ backup service that helps you manage data backups across multiple AWS services.
Backup
41
Backup integrates with resources like ____ ___ ___, ___ and _____
EC2 instance store, EBS and EFS
42
A ___ ___ ___ is a mechanism to delivery content quickly and efficiently based on geographical location. A ____ provides low latency.
Content Delivery Network, CDN
43
____ ___ is a CDN that delivers data and applications globally with low latency, and is good for deploying ____ ____
Cloud Front, static websites
44
____ ____ makes content available globally, or restricts it based on location
Cloud Front
45
___ ____ speeds up the delivery of _____ or ____ web content, and uses ____ locations to ____ content
Cloud Front, static, dynamic, edge, Cache
46
With a ___ _____, all of the files needed to render the website run on the _____ - do not need to go back to a _____ to get the content
Static Website, client, server
47
With ___ ___, if the content is already in the ____ location, ____ ____ delivers it immediately. If not, it retrieves the files from the ____
Cloud Front, edge, Cloud Front, origin
48
Cloud Front can retrieve files from __ ____, ___ ______, and ____ ____ _____
S3 Buckets, EC2 Instances, Elastic Load Balancer
49
Cloud Front can also ____ _____ and block ___ ______
Prevent attacks, IP addresses (Geo-restriction prevents users in certain countries from accessing your content.)
50
_____ _____sends your users/traffic through the AWS ____ ____ infrastructure when accessing your content, speeding up delivery
Global Accelerator, global network
51
Global Accelerator offers ___ percent performance boost with ___ ____ for ___ ____ applications
60, low latency, single-region
52
Global accelerator automatically____ traffic to ___ ____ regional endpoints
re-routes, healthy available
53
__ _____ _____ is a bucket-level feature that enables fast, easy, and secure transfers of files over long distances between your____ and an __ ______
S3 Transfer Accelerator, client, S3 bucket
54
uses CloudFront’s globally distributed edge locations - customers around the world can upload to a central bucket