3

An introduction to cloud file storage

 2 years ago
source link: https://mattsegal.dev/aws-s3-intro.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
An introduction to cloud file storage

An introduction to cloud file storage

Fri 05 June 2020, by Matthew Segal
Category: DevOps

Sometimes when you're running a web app you will find that you have a lot of files on your server. All these files will start to feel like a burden. You might worry about losing them all if the server fails, or you might be concerned about running out of disk space. You might even have multiple servers that all need to access these files.

Wouldn't it be nice if solving all these issues were someone else's problem? You would pay a few cents a month so that you never need to think about this again, right? I like using cloud object storage for hosting most of my web app's files and backups. If you haven't heard of "object storage" before: it's just a kind of cloud service where you can store a bunch of files. All major cloud providers offer this service:

These object storage services are very cheap at around 2c/GB/month, you'll never run out of disk space, they're easy to access from command line tools and they have very fast upload/download speeds, especially to/from other services hosted with the same cloud provider. I use these services a lot: this blog is being served from AWS S3.

I like using S3 simply because I'm quite familiar with it, so that's what we're going to use for the rest of this post. The other services are probably great as well. This video will take you through how to get started with AWS S3.

As an update to this video: AWS also ships a self-contained CLI tool that doesn't need to be installed in a virtual environment, which you can read about here. Eg:

URL="https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip"
curl $URL -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
aws --version

One great use-case for object storage like AWS S3 is hosting your database backups.

Get more backend web development tips

If you have any feedback or questions email me at [email protected]


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK