What is cloud storage?
a unified object storage system
Key points of cloud storage? (7)
What is Cloud Storage suited for?
storing large volumes of data that don’t require a consistent data structure
Cloud Storage Bucket key points? (5)
What is Cloud Storage Fuse?
a way to mount a bucket as a file system on linux and mac - allows upload and download of files to/from buckets using system commands
What are the 4 different storage classes for Cloud Storage?
What is multi-regional storage, and what are its key points?
What is regional storage, and what are its key points?
2. storage is in one region
What is nearline storage, and what are its key points?
What is coldline storage, and what are its key points?
What are the lifecycle managment policies?
You can configure objects to be moved based on different criteria, like time
How to change the storage class via shell?
gsutil rewrite -s [STORAGE CLASS] gs://[PATH TO OBJECT}
How to make a bucket via shell?
gsutil mb gs://[BUCKET NAME]
How to copy Cloud Storage object via shell?
gsutil cp [LOCAL OBJECT} gs://[DESTINATION BUCKET]
How to download Cloud Storage object?
gsutil cp gs://[SOURCE BUCKET]/[SOURCE OBJECT] [DESTINATION DIR}
How to move Cloud Storage object?
gsutil mv gs://[SOURCE BUCKET]/[SOURCE OBJECT] gs://[DEST BUCKET]/[DEST OBJECT]