Azure compute: Azure Functions Flashcards

1
Q

What are Durable functions useful for?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a trigger?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is binding?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is an Azure Function?

A

Azure functions are a serverless solution that allows you to write less code, maintain less infrastructure, and save on costs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a cold start?

A

A cold start refers to the time it takes for a function to run.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly