I noticed when creating Azure Functions, that one Function App can have multiple functions.
Can someone please explain to me the rationale behind this?
My guess - since the Function App dictates the hosting (app service plan, or consumption plan), you could have one Function App on the app service plan, then have multiple functions inside that one function app sharing the same app service plan.
But this doesn't make sense in consumption plan, since if you had a Function App with "Consumption" plan, and 2x functions inside it, this would be the same cost as splitting the two functions into 2x Function apps with Consumption plan?
Can someone shed some light on why you would/would not group functions in a function app?
Thanks!