Scale Out

Verb · Development

Definitions

  1. Horizontal scaling — increasing system capacity by adding more machines or instances rather than upgrading existing ones. Stateless services scale out trivially behind a load balancer; stateful systems require partitioning or replication strategies to distribute data across nodes.

    In plain English: Adding more computers to handle more work, instead of making one computer more powerful.

    Example: "We scale out the API tier to 20 pods during Black Friday and back down to 4 overnight — Kubernetes handles it with an HPA."

Related Terms