TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Modern cloud architecture on AWS: server fleets and databases

87 pointsby colemorrisonover 5 years ago

5 comments

malisperover 5 years ago
Although there are a ton of AWS servers, there&#x27;s only a few core services that I recommend:<p><pre><code> EC2 - You need a server. RDS - You need a database. S3 - You need to store files. Lambda - You are building an API with short lived requests. </code></pre> These services are all very high quality and are excellent at what they do. Once you get outside of these core services, the quality quickly drops. You&#x27;re probably better off using the non-AWS versions of those services.<p>For a few quick examples, you should be using Datadog over CloudWatch, Snowflake over Redshift or Athena, and Terraform over CloudFormation.
评论 #22280459 未加载
评论 #22280167 未加载
评论 #22280821 未加载
评论 #22279917 未加载
Jonnaxover 5 years ago
At what scale would you want to use RDS rather than using an EC2 instance with Postgres installed?<p>Assuming that the operator has the skills to manage Postgres.<p>It&#x27;s not like RDS does something complex like Geodistribution, right?<p>Also what is the scaling like? Is it automatic? How quickly can you handle more connections? Because my understanding was that it was slow.<p>I did have a play with their RDS Postgres nonths before, and I managed somehow to crash it requiring a restore from snapshot. Also their smallest instance was quite expensive for the performance.
评论 #22278520 未加载
评论 #22279657 未加载
评论 #22279292 未加载
评论 #22278357 未加载
评论 #22279701 未加载
评论 #22279609 未加载
评论 #22278290 未加载
评论 #22279653 未加载
评论 #22278370 未加载
评论 #22278426 未加载
评论 #22279418 未加载
kamilafsarover 5 years ago
I keep reading all these horror stories about Aurora (especially PostgreSQL). Is there anyone out there with an alternative story?
评论 #22281179 未加载
评论 #22278280 未加载
评论 #22278297 未加载
评论 #22279410 未加载
评论 #22278102 未加载
ramozover 5 years ago
&quot;Modern&quot; architectures can get quite complex and fast at scale &amp; in complex cases. This is merely a simple introduction to simple components of modern cloud architecture.
评论 #22278804 未加载
root-zover 5 years ago
As someone who has spent a fair amount of time working with AWS. I appreciate how approachable this tutorial is, as the official docs are usually way more arcane.