Is Your Site Hacker News Ready?
brandonsavage.net
Is Your Site Hacker News Ready?
1–10 of 51 posts
Re: Is Your Site Hacker News Ready?
#2Re: Is Your Site Hacker News Ready?
#3(I guess the answer is "No, only if you've misconfigured", but still...)
Re: Is Your Site Hacker News Ready?
#4My blog is a Django app running on a 512MB Rackspace VM with a basic Apache, mod_wsgi, and Postgres setup. I have a dozen low traffic applications all running on the same server alongside it. I have zero caching set up so every hit is doing the full process of querying the database and pushing the results out through a template.
I was on the front page of HN last year and the server load was negligable. I have graphs: http://thraxil.org/users/anders/posts/2012/06/02/How-Django-...
Re: Is Your Site Hacker News Ready?
#5Good tips for Wordpress users. Another great option we went for is hosting your entire site/blog on S3/cloudfront. This can be done using tools like Jekyll ( https://github.com/mojombo/jekyll ) or Middleman ( http://middlemanapp.com/ ).
Re: Is Your Site Hacker News Ready?
#6I'm constantly amazed at how poorly Wordpress is able to perform. 2.5GB virtual server with a cache in front of it and it went down? My blog is a Django app running on a 512MB Rackspace VM with a basic Apache, mod_wsgi, and Postgres setup. I have a dozen low traffic applications all running on the same server alongside it. I have zero caching set up so every hit is doing the full process of querying the database and…
Re: Is Your Site Hacker News Ready?
#7http://www.gigpeppers.com/post-mortem-of-a-failed-hackernews...
Re: Is Your Site Hacker News Ready?
#8Probably the biggest lesson we've learned from collecting data on latency and timeouts from our backend is that there are a LOT of very poor hosts out there. Trying to strike a balance between intermittent failures, and actual "Your site is down, you need to do something" is pretty difficult, unless you are willing to simply wait long enough. We'll regularly see timeouts from places like Tumblr and Github Pages--they never go down, but things can get spotty. We can also tell when certain hosting providers are doing their weekly backups (or something - just guessing) because things will just go to pot at the same time every weekend for about an hour.
I can second the S3/CloudFront recommendation. Pretty rock solid (modulo downtime in specific regions).
For anyone curious about the app: http://vigil-app.com
Re: Is Your Site Hacker News Ready?
#9Good tips for Wordpress users. Another great option we went for is hosting your entire site/blog on S3/cloudfront. This can be done using tools like Jekyll ( https://github.com/mojombo/jekyll ) or Middleman ( http://middlemanapp.com/ ).
If your site is entirely static content and mostly text, you don't really need a CDN. I've had a static site survive the HN frontpage without any problem on cheap-ass shared hosting.