Please enable JavaScript.
Coggle requires JavaScript to display documents.
Azure, AZURE FUNCTIONS - Coggle Diagram
Azure
account storage
-
-
-
-
O armazenamento é feito em camada: de forma que quanto mais o arquivo é acessado mais ele sobe nas camadas e quanto menos, mais ele desce. Quanto mais baixo nessa hierarquia, mais vai demorar para acessar
cosmo db
Um banco nosl totalmente gerenciado, focado em alta performance, pode trabalhar de forma global e possui varias opçoes de consistência
-
-
AZURE FUNCTIONS
descriptions
Why is the difference between azure functions, logic apps and webJobs
While Azure Functions require code to implement the logic, Logic Apps are more declarative and function as a low-code solution.
-
Why are AzureFunctions ?
Azure Functions allow developers to implement a single functionality without creating a complete application. They work like scripts that are executed when a trigger is activated.
SCALING
The way Azure Functions scale depends on the trigger type. If the trigger is HTTP, only one instance is allocated per second. For non-HTTP triggers, up to two instances can be allocated per second.
-
associations allow that the function connect in other systens, how an database.
-
-
-
Trigger. An trigger is an event that start the function. example: when an http request is received the function start.
-