Scaling

Vertical Scaling

Description

Adding more power (CPU, RAM) to an existing machine (also known as scaling up).

Where to use

  • Databases.
  • \n
  • Monoliths.

Real World Example

Upgrading an AWS RDS instance from t3.micro to m5.large.

Code Example

class VerticalScaling:\n    def __init__(self):\n        pass\n\n    def execute(self):\n        print('Executing Vertical Scaling')