Automatic Scaling of Azure Functions
Learn how to enable dynamic scaling and concurrency in Azure Functions.
We'll cover the following...
It’s not always convenient to manage the scale and concurrency of our application manually. Fortunately, Azure Functions allows both to be automatic. While vertical scaling still has to be manual, horizontal scaling can be automated. The application will scale itself based on the rules. This is what we will cover in this lesson.
Configuring automatic scaling
Automatic scaling can be enabled via service plan settings on a ...