I'm setting up an Azure Function app that has multiple timer triggers that are triggered at or around the same time. I'm confused by the wording here: https://docs.microsoft.com/fi-fi/azure/azure-functions/functions-scale
Each instance of the Functions host in the Consumption plan is limited to 1.5 GB of memory and one CPU. An instance of the host is the entire function app, meaning all functions within a function app share resource within an instance and scale at the same time.
Does that mean that each script that is executed with a timer trigger is allocated 1.5 GB of memory or does that mean that all of the scripts share 1.5 GB of memory that are running at the same time?