S3 Flashcards

1
Q

Can you make customers pay for downloading data from S3?

A

Yes, but for billing purposes, the consumers need to have a AWS account to have consumers pay for data retrieval from S3.

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

How do torrents work? Does S3 support torrents?

A

Torrent network is a peer to peer network used for file transfer. Any torrent provider such as bit torrent provides a web server, client and a tracker application to track where various copies of the file exist in a swarm.

Yes, S3 support file transfer to torrent network, that way files don’t have to be dowloaded from S3, eventually helps reduce costs for the content owner.

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

What is the maximum size of S3 object?

A

5TB

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

The largest object that can be uploaded in a single PUT is…

A

5GB

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

For objects larger than 100 megabytes, customers should consider using the _______ capability.

A

Multipart Upload

Split files

aws s3api create-multipart-upload –bucket exampleawsbucket –key large_test_file

aws s3api upload-part –bucket exampleawsbucket –key large_test_file –part-number 1 –body large_test_file.001 –upload-id

aws s3api list-parts –bucket exampleawsbucket –key large_test_file –upload-id

aws s3api complete-multipart-upload –multipart-upload file://fileparts.json –bucket exampleawsbucket –key large_test_file –upload-id

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

Can you change the number of concurrent requests from S3 CLI?

A

Yes, the default value is 10.

aws configure set default.s3.max_concurrent_requests 20

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

What storage class to be used for data with unknown or changing access patterns?

A

S3 Intelligent-Tiering

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

What storage class is recommended for long-lived, but less frequently accessed data?

A

S3 Standard-Infrequent Access (S3 Standard-IA) and S3 One Zone-Infrequent Access (S3 One Zone-IA)

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

What storage class is recommended for long-term archive and digital preservation?

A

Amazon S3 Glacier (S3 Glacier) and Amazon S3 Glacier Deep Archive (S3 Glacier Deep Archive)

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

What storage class is recommended for on-premises object storage to meet data residency needs?

A

S3 Outposts

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

What is a Provisioned Capacity Unit (PCU) and when should it use PCU?

A

Provisioned Capacity guarantees that your retrieval capacity for Expedited retrievals will be available when you need it. Each unit of capacity ensures that at least 3 expedited retrievals can be performed every 5 minutes and provides up to 150MB/s of retrieval throughput.

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

Can the files be kept in multiple regions?

A

Multiple copies are kept in three AZs in a given region. S3 is not Multi-Region. You have to programmatically replicate if you need to.

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

How much does it cost to transfer from internet or other regions into a S3 bucket?

A

$0

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

How much does it cost to export data from S3 bucket to internet?

A

$0.00 - 0.09 per GB

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

How much does it cost to export data from S3 bucket to other region?

A

Average $0.01 per GB

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

How much does it cost to export data from S3 bucket to Cloudfront?

A

$0

17
Q

Data Transfer charge for data transferred between Amazon EC2 and Amazon S3 within the same region

A

$0

18
Q

When an S3 version is enabled, and a new file version uploaded, do you have to enable public access explicitly ?

A

Yes.