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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How do you use Amazon Web services?

11 点作者 yr超过 14 年前
How are you using amazon web services for your starups ?

5 条评论

byoung2超过 14 年前
S3/Cloudfront: I use these for static file (images, CSS, Javascript, etc). A current project I'm working on requires serving tens of thousands of images, so rather than having to deal with storing these myself, dealing with backups, etc. Cloudfront also serves these from edge locations closer to users for better performance.<p>EC2/EBS/ELB/RDS: My projects are too big for shared hosting, too small to buy a cluster of servers. EC2 is the best option for "in-between" projects. I can scale vertically or horizontally very easily. Elastic load balancing makes this very easy...just clone a new server from a storeed EBS snapshot and add it to the load balancer. I write my apps to point to a common RDS database instance (soon to be upgraded to support read replicas).<p>I'm a developer, not a sys admin, so I use the AWS Management Console most of the time. That makes it really easy to add/remove servers, create new S3 buckets, etc.
LabSlice超过 14 年前
I've got a startup that is based solely on AWS. In fact, I just asked for feedback on it: <a href="http://news.ycombinator.com/item?id=1820622" rel="nofollow">http://news.ycombinator.com/item?id=1820622</a><p>The startup is a Virtual Demos, Evaluations and Training solution. It uses the EC2 back-end to issue machines (eg. to give out a demo to prospective customers, or to issue a training environment to a student in a classroom environment).<p>In practice the startup uses EC2 to lease out machines, but itself is running on EC2. We use all the AWS goodies to scale the environment as demand builds up. So far I've found AWS to be an awesome service, and quite a game changes. If you're not aware, they now offer 'Micro' Unix boxes for 2 cents/hr and Windows boxes for 3 cents/hr, which is an awesome price point for any startup.<p>Simon @ LabSlice
knoxos超过 14 年前
I'm using S3, EC2 for mostly all test-servers, and some EC2 instances also for production modus (resources were allocated when we need them). But as already mentioned, you have to be aware of the costs - so, I combine AWS with dedicated hosted servers also, because it is still cheaper yet. The best things within AWS-Services are from my point, that you save CAPEX for your own infrastructure and you're more flexible in scaling (if your architecture supports that). But keep in mind that AWS has some "hidden" costs you should be aware about (charge for requests, own IP-addresses etc..)
jschuur超过 14 年前
No really: How do you USE it?<p>I get the basics: EC2 VPS for computing power, and you get to pick a stack from a list of AMIs or customize one to fit your needs, S3 for storage, ClouFront CDN for better global distribution, but whenever I want to take a closer look, I feel so overwhelmed by the options that seem to be increasing over time.<p>What's the best reading material to get a solid, up to date foundation?
rlpb超过 14 年前
I use EC2 for my builds. It means that the builds are fast, clean and known reproducible since they all start from a clean Ubuntu LTS install. The build system gets all upstream tarballs (eg. glibc, openssl etc) from my S3 bucket.<p>I also find EC2 really handy for quick experiments on different versions of Ubuntu and Debian. It is much quicker than setting up/maintaining images in VMware/VirtualBox.