Storage - Overview of Amazon S3 Flashcards
1
Q
What is Amazon Simple Storage Service (S3)?
A
- It is a fully managed, object-based storage service provided by AWS.
- It is highly available, highly durable, and cost-effective.
- It is widely accessible and scalable.
2
Q
What is the maximum file size supported by Amazon S3?
A
- The maximum file size is five terabytes.
- The minimum file size is zero bytes.
3
Q
How does Amazon S3 store data?
A
- It operates as an object storage service, using a flat address space and unique URLs.
- Data is stored across multiple availability zones within a specified region for increased durability and availability.
- Objects stored in S3 have a durability of 99.999999999%, or eleven nines.
4
Q
What is the difference between availability and durability in Amazon S3?
A
- Availability refers to the uptime of Amazon S3, ranging from 99.5% to 99.99% depending on the storage class.
- Durability refers to the probability of maintaining data without loss or corruption, which is 99.999999999% in Amazon S3.
5
Q
How do you store objects in Amazon S3?
A
- Objects are stored in buckets, which are unique container names.
- Each bucket must have a globally unique name.
- Folders can be created within buckets for data organization, but Amazon S3 does not function as a file system.
6
Q
How are objects identified in Amazon S3?
A
- Objects are identified by a unique object key, which includes the bucket name, any folders, and the file name.
- The object key serves as a URL for accessing the object.
7
Q
How do you create a bucket and upload an object in Amazon S3?
A
- In the S3 console, click on “Create bucket” and provide a unique bucket name.
- Choose a region for the bucket.
- You can create folders within the bucket for organization.
- To upload an object, click on “Upload,” select the file, set permissions and storage class, and review before uploading.