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.

What is scalability anyway?

49 pointsby r4umover 1 year ago

4 comments

pdpiover 1 year ago
&gt; A system is scalable in the range where the cost of adding incremental work is approximately constant.<p>The part that nobody ever says out loud: and where the cost of removing incremental work is also approximately constant.<p>A solution targeting server or desktop environments doesn’t necessarily scale down to microcontroller scale. One of the things that makes both SQLite and Linux so popular is how they scale well into really small environments.
评论 #39054109 未加载
评论 #39054111 未加载
dventimihasuraover 1 year ago
This is a nice treatment, but I think it omits one other option which is a variation of the first option, if you like: &quot;vertical scaling&quot;. When the load exceeds what can be done by the single box that you already bought, just buy a bigger single box that can do more. Yes, often that won&#x27;t work and it will, as the author says, require a complete rethinking of the architecture of the system, but often it will not.
评论 #39057248 未加载
arter4over 1 year ago
Scalability is adapting the characteristics of your instances to demand increase or decrease. You can adapt the number of instances (horizontal) or adapt the CPU, RAM, I&#x2F;O characteristics of every single instance (vertical).<p>A basic rule of thumb I try to follow is: as long as you have at least two instances, don&#x27;t immediately think about hundreds or thousands of instances for spikes that will never exist. Scaling from 1 to 2 (to remove SPOF) is much harder than scaling from 2 to 3, or 20. You have already removed some implicit &quot;localhost&quot; assumptions.
评论 #39065568 未加载
RobRiveraover 1 year ago
I want to believe the title of this post is a flcl reference.<p>This is the timeline I choose to live in.