Live data from Hacker News

Why do small teams keep getting wrecked by AWS bills?

news.ycombinator.com

11–19 of 19 posts

Re: Why do small teams keep getting wrecked by AWS bills?

#11

Gotta look at your monthly bill every day. I've been wondering about the question of "where did the web go?" and how even technically savvy people have given up on blogging for behavioral sinks like Medium. Part of the story is that $50 a month dedis have given way to the "free" plan on AWS or a system that costs $10 a month to run if you're not successful but has no upper bound on the bills if you are successful. So…

yeah makes sense. the idea that success = risk now is kind of wild. did you end up doing anything to limit that egress, or just ride it out?

Re: Why do small teams keep getting wrecked by AWS bills?

#12

They look at code on stackoverflow and the web that initializes the SDK resources that have you explicitly put the access key and secret key in code. For instance, the correct way to initialize the s3 client in Python is s3 = boto3.client('s3') The SDK will automatically get the credentials that are configured locally within your environment or the IAM role attached to your Lambda, EC2 instance, Docker (ECS, EKS) con…

yep this is the one. feels like a lot of people just copy-paste from stackoverflow without realizing they're hardcoding keys. have you seen this cause issues in prod or mostly in hobby stuff?

Re: Why do small teams keep getting wrecked by AWS bills?

#13

One of the best things you can do is enable AWS’s free Cost Anomaly Detector. I like getting pinged when something substantial changes.

yeah cost anomaly detector is underrated. do you usually set custom thresholds or just let it use the defaults?

Re: Why do small teams keep getting wrecked by AWS bills?

#15
post #7
post #5

https://old.reddit.com/r/aws/comments/1jupura/just_got_compr... - this post you're referring to?

I like that you linked old reddit. Using the normal domain makes the site utterly unusable.

agreed. old reddit actually works. no extra stuff and doesn’t get in the way

Re: Why do small teams keep getting wrecked by AWS bills?

#17

Best way to defeat competition is to make sure they never get out of the gate

yeah exactly. feels like the pricing model alone keeps a lot of folks from even starting. one wrong config and you’re done before you ship anything.

Re: Why do small teams keep getting wrecked by AWS bills?

#19

One of the best things you can do is enable AWS’s free Cost Anomaly Detector. I like getting pinged when something substantial changes.

yeah cost anomaly detector is underrated. do you usually set custom thresholds or just let it use the defaults?

Start with defaults; you can turn it back if it’s too noisy.
Post reply on HN