...

/

Manual Scaling of Azure Functions

Manual Scaling of Azure Functions

Learn how to apply static scaling and concurrency in Azure Functions.

If we expect our web application to handle an increased volume of incoming connections and requests, we need to scale it. There are two types of scaling, which are outlined below:

  • Vertical scaling, also known as scaling up and scaling down. We scale our application up by allocating more computational hardware to its host system. We scale the application down by downgrading the hardware to save costs.

  • Horizontal scaling, also ...