

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 3
click for more info
Not enough gems
Cost: 6 gems
1: Object Storage
incomplete
2: File System Illusion
incomplete
3: Dynamic Path
incomplete
This lesson's interactive features are locked, please to keep using them
If you squint really hard, it feels like S3 is a file system in the cloud... but it's not. It's technically an object storage system - which is not quite the same thing.
Click to play video
"File storage" is what you're already familiar with:
File storage is great for single-machine-use (like your laptop), but it doesn't distribute well across many servers. It's optimized for low-latency access to a small number of files on a single machine.
Object storage is designed to be more scalable, available, and durable than file storage because it can be easily distributed across many machines:
aws s3api head-object --bucket BUCKET_NAME --key OBJECT_KEY --output json > /tmp/object_metadata.json
Replace BUCKET_NAME and OBJECT_KEY with the name of your bucket and the key of your object
Run and submit the CLI tests.