What are azure functions?
What are the two kep components of azure functions?
How are functions and logic apps different from one another? (Long answer)
What are orchestrations in terms of functions
How are functions and webjobs similar?
How are functions and webjobs different?
What hosting plans are availble for functions?
What does the function hosting plan dictate?
What are the benefits of the consumption function hosting plan?
What are the benefits of the premium function hosting plan?
What are the benefits of the dedicated function hosting plan?
What are the two other hosting options for functions?
How does scaling work on the consumption function hosting plan?
How does scaling work on the premium function hosting plan?
How does scaling work on the dedicated function hosting plan?
How does scaling work on the ASE and Kubernetes hosting plans?
Why does a function app require a storage account?
How do consumption and premium function hosting plans handle scaling?
Where are function code files stored?
What is the scale controller?
What happens if the function app is idle for several mins?
What are the intricacies of scaling in Azure functions?
Max instances
- A single function app only scales out to a max of 200 instances
- a single interface may process more than one msg or request at a time though so there isn’t a set limit on number of concurrent executions
New instance rate
- for HTTP triggers new instances are allocated at most once per second
- for non HTTP triggers new instances are allocated at most every 30 seconds
How can we specify a lower max instance value for a function app?