Azure compute: Azure Functions Flashcards
What are Durable functions useful for?
Durable Function is an extension of Azure Functions that lets you write stateful functions in a serverless computing environment. The extension lets you define stateful workflows by writing orchestrator functions and stateful entities by writing entity functions using the Azure Functions programming model.
What is a trigger?
An event that causes a function to run. A trigger defines how a function is invoked and a function must have exactly one trigger. Triggers have associated data, which is often provided as the payload of the function.
What is binding?
Binding to a function is a way of declaratively connecting another resource to the function; bindings may be connected as input, output, or both. Data from bindings are provided to the function as parameters. You can mix and match different bindings to suit your needs.
What is an Azure Function?
Azure functions are a serverless solution that allows you to write less code, maintain less infrastructure, and save on costs.
What is a cold start?
A cold start refers to the time it takes for a function to run.