TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: At what point does AWS not make sense

8 点作者 dakrisht超过 11 年前
At what point does AWS not make sense vs. having your own in-house metal?<p>Is it a simple metric such as 1TB &#x2F; month of EC2 (without S3, etc.)?<p>Is it a bandwidth issue?<p>When does it make more economic sense to purchase metal vs. hosting on AWS? (sysadmin, access and infrastructure included)

4 条评论

dangrossman超过 11 年前
AWS makes sense if your needs are <i>elastic</i>. Netflix&#x27;s needs are elastic, their usage grows and falls over time and even over the hours during the day. Most sites&#x27; aren&#x27;t.<p>If you know you need a server or two with a certain amount of RAM and HDD space, then rent a server or two at a high-quality DC like SoftLayer or Rackspace. It&#x27;ll be cheaper, and you might be surprised how many &quot;instances&quot; worth of performance you get out of a single real box. You can treat those servers the same as virtual servers in every way -- they just take 2 hours to &quot;boot a new instance&quot; because someone has to build and provision it to your account at the DC.<p>You don&#x27;t need to buy your own hardware and colocate unless you have specialized hardware needs.
评论 #6753321 未加载
seiji超过 11 年前
Check out <a href="http://daveyeu.com/ops-for-little-babies/" rel="nofollow">http:&#x2F;&#x2F;daveyeu.com&#x2F;ops-for-little-babies&#x2F;</a> -- the transitions make it a bit slow to get through, but the content is worth it.<p>His argument is: start on Heroku until you realize you can get 10x to 100x better performance running on AWS directly, move to AWS, but then you have to do your own monitoring, logging, deployment, upgrades, load balancing, database maintenance, etc.<p>As far as non-AWS, there&#x27;s no need to be scared of &quot;real&quot; servers. You&#x27;ll often get stronger hardware (minus those crazy 100+ GB VMs), cheaper transit (100TB included in a $200&#x2F;month server), cheap dedicated IPs, and custom IPv6&#x2F;VLANs&#x2F;ACLs if needed.<p>At this point, Ruby is like AWS. People just do it because everybody just does it. &quot;Why is everybody using Ruby when it&#x27;s slow, has an implementation dictated by implementation instead of specification, and has multiple competing runtimes in an attempt to fix flaws in the primary implementation?&quot; People latch on to the hype and forget to evaluate reality after a while.
PeterisP超过 11 年前
If you expect your needs to fluctuate wildly, then AWS is the thing to go; if they fluctuate mildly, then metal will be cheaper but has other issues, such as all the administration tasks are different.<p>AWS allows you try to run a large setup and then just drop it if the project doesn&#x27;t work out; AWS allows you to cheaply run large but infrequent tasks quickly - you&#x27;re not paying for idle servers.<p>Also, you may want to choose dedicated hosted servers instead of &quot;in-house metal&quot;, that&#x27;s a solid middleground between that and AWS.
AznHisoka超过 11 年前
What I don&#x27;t get is that the administration is pretty much equivalent between the 2. I spent a ton of time learning how to run recipes for EngineYard, and how to restart my processes, and how to kick off SOLR as soon as I deployed... For all the hype that these cloud&#x2F;PAAS gets, you&#x27;d think it&#x27;s as easy as clicking a button, checking a few boxes, etc.<p>Ever since I moved to managing my own servers, it got arguably easier. I wrote a Capistrano script that builds and deploys everything to production.
评论 #6681233 未加载