Migrating from AWS to Self-Hosting

https://ziglang.org/news/migrate-to-self-hosting/

The thing is, ziglang.org is not an essential service. It’s not really an emergency if it goes down, and 99% uptime is perfectly fine for this use case. The funny thing about that last 1% of uptime is that it represents 99% of the costs.

How true - most applications can tolerate a small bit of downtime, as long as you can rebuild things quickly.

Maybe it’s time to define a new term - rebuildability.

Redundancy or rebuildability – $$$$$$$$$$$ or $ - take your pick.

1 Like

For many network services, I totally agree that the last 1% is a huge amount of the cost. But for some types of services, the cost to dramatically improve your uptime only costs roughly double the cost to have the service at all.

For example, NTP or simple HTTP(S) hosting. The NTP pool and serving files like Debian does with http://deb.debian.org/ both rely on simple duplicates of the first machine, providing the same files/interfaces and then a few fancy tricks with DNS.

If you have services like this then the cost of dramatically improving your uptime isn’t that bad at all. If you have a database backing your service then things might get slightly more tricky; it would really depend on how you’ve designed your service and database solution.

But also, people seem to make things a LOT more complicated than they need to be in search of additional uptime and I expect often they actually reduce their uptime due to the added complexity.

1 Like