From 445bdabde57f30873f1ec91cb35d34c4d31e5e9c Mon Sep 17 00:00:00 2001 From: dev-aly3n <79654879+dev-aly3n@users.noreply.github.com> Date: Mon, 8 Jan 2024 21:33:55 +0330 Subject: [PATCH] fix: change the broken link to a valid resource (#4970) --- src/data/best-practices/aws/content/service-over-servers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/best-practices/aws/content/service-over-servers.md b/src/data/best-practices/aws/content/service-over-servers.md index 640475f26..cf8a46634 100644 --- a/src/data/best-practices/aws/content/service-over-servers.md +++ b/src/data/best-practices/aws/content/service-over-servers.md @@ -2,4 +2,4 @@ > Servers are ephemeral, you don't care about them. You only care about the service as a whole. -If a single server dies, it should be of no big concern to you. This is where the real benefit of AWS comes in compared to using physical servers yourself. Normally if a physical server dies, there's panic. With AWS, you don't care, because auto-scaling will give you a fresh new instance soon anyway. Netflix have taken this several steps further with their [simian army](http://techblog.netflix.com/2011/07/netflix-simian-army.html), where they have things like [Chaos Monkey](http://techblog.netflix.com/2012/07/chaos-monkey-released-into-wild.html), which will kill random instances in production (they also have Chaos Gorilla to kill AZs and I've heard rumour of a Chaos Kong to kill regions...). The point is that servers will fail, but this shouldn't matter in your application. +If a single server dies, it should be of no big concern to you. This is where the real benefit of AWS comes in compared to using physical servers yourself. Normally if a physical server dies, there's panic. With AWS, you don't care, because auto-scaling will give you a fresh new instance soon anyway. Netflix have taken this several steps further with their [simian army](http://techblog.netflix.com/2011/07/netflix-simian-army.html), where they have things like [Chaos Monkey](https://github.com/netflix/chaosmonkey), which will kill random instances in production (they also have Chaos Gorilla to kill AZs and I've heard rumour of a Chaos Kong to kill regions...). The point is that servers will fail, but this shouldn't matter in your application.