vote up 8 vote down star
1

So, I have a dedicated server. I host about dozen or so small sites.

Is there a real benefit in using S3(or Mosso) for my image and static file hosting? My server has more than enough disk space, or am I completely missing the point of S3?

I keep reading about how wonderful and cheap it is, and I ask myself "self, why aren't you using this" and the reply is always "why?"

flag

58% accept rate

11 Answers

vote up 9 vote down check

Hi Ronn, if you're running within the included storage and bandwidth of your server and your needs are being served well, you are already doing the simplest thing that is working for you and that is where you should always start. Off the top of my head I can think of a couple reasons why you may want to move some storage to S3 in the future:

  • Your storage or bandwidth needs grow beyond what you have and S3 is cheaper than upgrading your current solution
  • You move to a multiple-dedicated-server solution for failover/performance reasons and want to be able to store your assets in a single shared location
  • Your bandwidth needs are highly variable (so you can avoid a monthly fee when you're not getting traffic) [Thanks Jim, from the comments]
link|flag
agreed, it is also useful if you have highly variable bandwidth needs (so you can avoid a monthly fee when you're not getting traffic) – Jim Robert Apr 10 at 13:58
Thanks that is a very good point Jim, I added this to my answer – Adam Alexander Apr 10 at 14:30
vote up 7 vote down

If you run an entire website off of a single machine, and that machine is more than enough to handle your site, then kudos, images are not a bottleneck that needs solving right now. Forget about S3 for now.

However, as your server gets busier, you will want your server to be spending all of its time doing server things. Transferring static content like flat HTML files and images is an easy, dumb job, and wasting precious active connections, bandwidth, and CPU cycles on them is no good. By switching to S3, your server can concentrate on doing what's important, which is whatever your program actually DOES.

S3 also has benefits of being distributed around and attached to what's probably a fatter pipe than your server, which means the images will show up slightly more quickly on your client's machines, so that's an added bonus.

S3 is also backed up, which means that it makes for a pretty nice place to store pretty much any private data under the sun, in addition to stuff that you want to serve to others (although don't confuse the permissions settings between those two things -- in fact, you may want to use separate accounts entirely).

S3 is also nigh-infinite, which means that if you want to let users upload files to your site (profile images, attachments, etc), S3 is a great choice so that you don't have to constantly worry if your server is going to run out of disk space (obligatory $$$ warning here).

But like I said at the top, if you're a one-server setup with a handful of users, none of this really matters. It's a tool like any other, and it may not be something you need yet.

link|flag
3  
+1 for your username. I didn't even read your post. :p – Randolpho Apr 8 at 22:10
4  
Here is a play-by-play of how I felt in the last few minutes: "Hey, I got a +1! Mood++" "Hey, somebody likes my username! Mood++" "People only like me for my username and not my brains. Mood-- :(" "I wonder if this is how attractive women feel. setMood(contemplative)." – CaptainAwesomePants Apr 8 at 22:17
it's also a good answer – chris Aug 5 at 22:06
chortle It's also worth noting that S3 buckets cannot have nested folders, so each bucket has a flat file structure. Also, bucket names need to be unique across the whole of Amazon Web Services (I think this bit sucks). If you do move your files, be ready for those constraints. – Jaymie Aug 21 at 15:14
While this is true, you can have buckets with names that look just like a folder hierarchy. For example, "work", "work/specialClients", "work/specialClients/Acme". It's not a real hierarchy, but you could treat it as one with a bit of effort. – CaptainAwesomePants Aug 21 at 18:07
vote up 0 vote down

It's not really directly related to your actual hosting of web sites, but it's certainly an important part of it, especially if the sites don't belong to you alone -- S3 is a great backup solution. There are tools such as duplicity that can automatically and efficiently back things up onto S3 for you, and it's extremely cheap for this purpose. I back up a fairly large amount of data for less than $1/month.

link|flag
vote up 1 vote down

You write:

My server has more than enough disk space, or am I completely missing the point of S3?

You are not missing the point if what you have on you server is write-once read-less-than-once stuff, such as disaster-recovery backups (which you hope will be read-never), because transfer times will not matter. The point of S3 is delivery speed.

First, S3 distributes your content geographically. End users benefit from shorter paths.

Second, S3 can act as a BitTorrent seed, which not only conserves your bandwidth, it means your most popular content will be distributed faster because it can take advantage of the ad-hoc swarm. There are reports on the AWS Discussion Forums that S3 support of the BitTorrent protocol is "very, very spotty." I have not tested it myself.

link|flag
When you create an S3 bucket (read: 'folder'), you choose whether you want it stored in the US (cheaper) or Europe (marginally more expensive). I believe for true closest geographic distribution, you must also sign up for a CloudFront account. This then always serves your content to users from the location nearest them. @Ronn Lixx: if you go ahead with putting your files on S3, this isn't something you'll have to worry about, it'll be more than fast enough, I'm sure. I know mine are! CloudFront would only come into play for significant amounts of truly global traffic, like real-time vids. – Jaymie Aug 21 at 15:12
vote up 1 vote down

For small sites, S3 or Mosso may not be that reasonable for image hosting, but if you have any video files (.wmv, .flv, etc...) or large downloads (app distributions, etc..), I'd still put them on S3 or Mosso to save potential bandwidth spikes if for some odd reason, your content becomes wildly popular.

link|flag
vote up 4 vote down

It's simply a matter of doing the numbers: given a certain amount of traffic for a set of files, you can calculate exactly how much hosting those file on S3 would cost you, and you should be able to do the same for your current provider. If the number is lower for S3, there you have your reason.

An added benefit is that S3 scales pretty much linearly with traffic and you pay only for what you actually use, whereas most providers charge you a flat fee no matter how little traffic you actially have, and some will gouge you badly if you ever exceed the maximum traffic included in the flat fee.

Better speed and availability could be an additional benefit.

Basically, if you have a site that could potentially incur wildly disparate traffic, then using S3 for its images and other static files means that if you're hit by the Slashdot effect, the site has a much better chance of staying reachable, and you have a much better chance of avoiding nasty surprises concerning excess traffic fees.

link|flag
vote up 1 vote down

I would second the mention of "redundancy" -- you can count on any content that's in S3 to be distributed to multiple data centers, and effectively been very much always accessible for anyone with functioning network connection.

Cost may be another factor: data transfer rates for S3 are quite competitive.

And speed is the last one: you can access data VERY fast from S3. But that's more of an issue for data other than browser-viewable images.

link|flag
vote up 1 vote down

I'd say that there's no reason if your base hosting plan provides enough space/bandwidth. Where I think it's useful is when your file transfers become enough that you have to look at buying an add-on of storage/bandwidth from the provider -- in that case, S3 may be a viable alternative. But if I'm paying $X/month and not using all of the storage, there's no upside to it.

On the other hand, if your capacity planning calls for you to someday exceed the provider's limits, S3 may be a good solution from the start so you don't have files being served from multiple places.

link|flag
vote up 0 vote down

Speed might be the only benefit. If your dedicated server is simply networked through your ISP (which may well throttle upstream speeds even if downstream speeds are high) then you might find that your sites are often slow to load. If so, then S3 or another dedicated server provider can help. Other than that, I can think of absolutely no reason why Amazon's service would be more appropriate for you - especially with simple, static sites.

link|flag
vote up 1 vote down

If you're hosting a high-traffic site, the bandwidth cost (and latency issues) of hosting images yourself makes S3 and other services like Akami attractive. For a low-traffic site, it probably isn't an issue.

link|flag
vote up 0 vote down

From what I hear, besides low cost, the main advantage is the ease of backup from an EC2 setup.

Link.. http://groups.drupal.org/node/2383

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.