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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Heroku vs EngineYard Cloud vs Joyent

28 点作者 r11t超过 15 年前

6 条评论

andrewvc超过 15 年前
These two services behave so differently, it's hard to do a real cost breakdown. It depends on your app. Here are some issues with comparisons between EY and Heroku (I'm leaving Joyent out because I have no experience with them):<p>1. There's no reason to believe that 6 mongrels on an EY small EC2 instance == 6 thins on whatever EC2 size Heroku is using. They need to be benchmarked.<p>2. DB Performance needs to be benchmarked. EY uses MySQL, Heroku uses Postgres or Amazon RDS (MySQL). I've heard that their postgres db is substantially faster than RDS.<p>3. Heroku gives you varnish, and it doesn't cost you any dynos. If you can use cache control headers, varnish is your friend. On EY you'll likely use Rack::Cache, which is fine, but it hits a mongrel. Heroku also does gzip and SSL before it hits your server, also saving you cycles.<p>4. App server redundancy with EY is expensive since you need a whole other small EC2 instance, with Heroku all your dynos are spread out.<p>5. If you want instant database failover (using MySQL replication), this is a extremely easy on EY, with Heroku it takes more work, you have to launch your own RDS instances. Of course, a small RDS instance is only $80/mo, beating EY and Heroku's DB offerings on price. RDS will have replication soon, probably at a lower price than EY. Of course, neither EY and Heroku haven't to my knowledge announced plans to drop their prices in November when amazon drops their EC2 prices by 15%. This would make both more competitive vs RDS.<p>6. EY likely has a better economy of scale, a 5ECU EY instance ($197 vs $125 for a 1ECU small) is probably more cost effective for CPU heavy requests than Heroku Dynos.<p>7. EY support ain't free. Keep in mind that EY support and monitoring are only there if you pay major extra $ on top of your infrastructure. It can easily nearly double your costs depending on your plan.<p>The cost of either one really will vary depending on which features you use heavily.
tptacek超过 15 年前
Everyone who has ever worked with me in sales or marketing is going to giggle to hear me say this, but it's really bad form to make your pitch on your competitor's negatives. Every point that salesperson had to make could have been made purely on positive terms, like:<p>* "I think you'll find our support is hard to beat, because of our advanced support portal you can see [here], and because we offer 24x7 phone support."<p>* "We're convinced that we currently offer the best pricing in the industry for your expected usage; [explain here]. If you're getting a better price for that usage from someone else, we'll beat it."<p>* "We have a different architecture than other cloud providers, because we provide OS-level isolation from other customers. No other customer app failing in our cloud will impact yours, because [etc etc]"<p>And on and on. The direct jabs at Heroku here just make me think this guy is skeevy.
评论 #912892 未加载
评论 #912816 未加载
mikeryan超过 15 年前
I was hoping for an actual comparison instead of a bunch of dirty sales laundry.
bham超过 15 年前
For a straight web site, I'm sure any of these are fine if not "pricey". What do you folks use for web service hosting? Sure, it can be just a web host like any other. But Heroku (last time I checked) does not support any form of long-polling and/or streaming for instance.<p>I can setup a VPS with nginx proxying to tornado/node.js/etc that does streaming without a problem. However, there's the issue of scaling it out that's pain. You can use Linode's API or something similar but eek, what a mess.<p>Thoughts?
callmeed超过 15 年前
Been using EngineYard for quite a while now and I'm extremely happy with them. In fact, I had a problem with our production slice last night after a deploy–I hopped into IRC and they fixed it right away.<p>I have only used Heroku's free plan. I have run into a few small snags that made it unusable for some specific apps (example: couldn't upload high-res images reliably). I really like their management app and technology. I plan to use them for a smaller project soon.<p>Regarding this quote in the original post: <i>"but to be honest he’s scared me off with those hundreds of dollars quotes like that’s nothing for a small guy startup like me to pay for hosting."</i><p>If you're a small, low-budget, bootstrapping startup then maybe you're comparing the wrong services. I think with Heroku and EnginYard both, you're going to pay a premium over simply getting a nice slicehost slice or SoftLayer server and setting it up yourself.
jotto超过 15 年前
back in the day joyent/textdrive was working on some rails specific deployment strategies and just ended up with their "accelerator" AKA VPS AKA Cloud
评论 #913111 未加载