S204 - Azure Durable Functions for serverless .NET orchestration - Jeff Hollan

  Рет қаралды 41,093

Microsoft Visual Studio

Microsoft Visual Studio

Күн бұрын

Пікірлер: 29
@sureshsambana5219
@sureshsambana5219 3 жыл бұрын
Crystal clear presentation. Learnt a lot from this video. Thank you so much Jeff Hollan.
@kirankkadam
@kirankkadam 5 жыл бұрын
Very well presented. Would love to see more video's from Jeff.
@archie1804
@archie1804 4 жыл бұрын
Thank you very much. All of that I needed was here.
@anthony.7777
@anthony.7777 5 жыл бұрын
Brillant talk, thanks Jeff !
@pequod4557
@pequod4557 Жыл бұрын
Thank you so much for this well-made presentation!
@jamesmorey1561
@jamesmorey1561 5 жыл бұрын
Love it! I can create single-responsibility Functions and glue them together with Orchestrators to form flexible 'workflows'.
@vivekvardhan2812
@vivekvardhan2812 4 жыл бұрын
Hey James.. Do you have any such example on github or some material about any good design patterns to follow? it would make complete sense to create a whole bunch of single-responsibility functions and just string them and reuse them in multiple orchestrators to create diff workflows :-)
@ashutoshtriptiSharma
@ashutoshtriptiSharma 4 жыл бұрын
I like the examples. Thanks Jeff. Well explained
@atifzafarkhan6703
@atifzafarkhan6703 3 жыл бұрын
Awesome video !! Great contents to start with :)
@annablendermann
@annablendermann 3 жыл бұрын
Great video. Thank you Jeff!
@PeriMCS
@PeriMCS 4 жыл бұрын
When it comes to cost what you are describing is consumption plan I think. But you can't use it with ManagedIdentity. You need to pay for app service plan.
@sipwhitemocha
@sipwhitemocha 2 жыл бұрын
This video is excellent
@amandeepsinghpathania2482
@amandeepsinghpathania2482 2 жыл бұрын
Great video
@2005Azm
@2005Azm 6 жыл бұрын
Wonderful !
@leroylimll
@leroylimll 5 жыл бұрын
Hi Great Session!! Really learnt a lot here. Just a quick question.... is there a sample for the Human Interaction use case as shown at around the 14min mark?
@NonnoSgrenf
@NonnoSgrenf Жыл бұрын
Every time an orchestrator is started it generates a new workerID right?
@codewithparveenyadav
@codewithparveenyadav 5 жыл бұрын
this is wonderful
@nagrotte
@nagrotte 3 жыл бұрын
Is a durable function have the same limitation as an azure function; for example The time limit to complete and the maximum number of instances that it can spawn? if a durable function calls 2 functions F1, F2 and F3; if the execution of these 3 things put together is greater than 10 minutes, will Durable function quit?
@yetanotherchannelyac1434
@yetanotherchannelyac1434 3 жыл бұрын
This is great. SDK-focused Durable Functions seem really good for certain use cases! How do you price Durable Functions?
@andersnielsen6319
@andersnielsen6319 9 ай бұрын
First, we are told that the orchestrator must only call deterministic APIs. Next, Jeff proceeds to call a function from the orchestrator that returns "the last set of transactions". My head is exploding. Why not gather the transactions (i.e. determine the workload) in the starter function and pass them as a parameter to the orchestrator?
@stuartlynch1191
@stuartlynch1191 8 ай бұрын
The activity functions do not need to be deterministic, just the orchestrator function. So the non-deterministic call to get the last set of transactions is done in an activity function. The first time the orchestrator function awaits the activity call to get the transactions, the work (calling the api) is scheduled and the orchestrator shuts down. On all subsequent replays of the orchestrator, it uses the list of transactions that has been written to the orchestration history as the result of the activity function. The orchestrator function is still deterministic because the list never changes, it is only retrieved once then that result is stored for each subsequent replay. Hope that helps :)
@sravankumar9462
@sravankumar9462 4 жыл бұрын
I have a azure pipeline at one point I am using azure function to refresh tables in azure analysis service but it is taking long time .so I want to use durable function but I am unable to connect to azure analysis service from activity function .can anyone help ??
@ProGaming-kb9io
@ProGaming-kb9io 2 жыл бұрын
good intro. but it is start in14:13
@BloodyCallus
@BloodyCallus 2 жыл бұрын
I am geeking out hard on the durable functions and parallelism. Amazing stuff, are there any limitations to I/O ? We're trying to orchestrate the backup/restore of large Azure MySql DBs.
@coderider3022
@coderider3022 2 жыл бұрын
I think the azure automation service might be a better fit here ?
@imsandeepsharma
@imsandeepsharma 2 жыл бұрын
how to pass multiple input to DurableFunctionsOrchestrator from DurableFunctionsHttpStart function in powershell
@coderider3022
@coderider3022 2 жыл бұрын
Docs confirm 1 object so you need to use a class of some type or a tuple etc to have multiple bit of data. Same flaw in activities, can use the get input method or via bindings
@mptjeNL
@mptjeNL 6 жыл бұрын
just wondering ? the durable function template when you add a new function, where is this availble. i have all the latest bits but not this template :)
@JeffHollan
@JeffHollan 5 жыл бұрын
Make sure you are using the v2 .NET Standard version when adding a new project. The v1 .NET Framework templates don't show it currently. Should be there for latest bits in VS 2017 though
Durable Functions 2.0 - Serverless Actors, Orchestrations, and Stateful Functions
32:58
S208 - Microservices with .NET on Service Fabric - Sudhanva Huruli, Vaclav Turecek
1:00:41
CHOCKY MILK.. 🤣 #shorts
00:20
Savage Vlogs
Рет қаралды 29 МЛН
Harley Quinn's desire to win!!!#Harley Quinn #joker
00:24
Harley Quinn with the Joker
Рет қаралды 16 МЛН
ROLLING DOWN
00:20
Natan por Aí
Рет қаралды 10 МЛН
The Different Patterns of Azure Durable Functions with Jonah Andersson
25:18
Microsoft Developer
Рет қаралды 12 М.
Dos and Don'ts for Serverless and Azure Functions - Jeff Hollan
1:01:22
NDC Conferences
Рет қаралды 69 М.
Deep dive in Durable Functions - Laurent Bugnion - NDC Oslo 2021
57:49
NDC Conferences
Рет қаралды 11 М.
The Clever Way to Count Tanks - Numberphile
16:45
Numberphile
Рет қаралды 1 МЛН
Using Durable Azure Functions in .NET 7 | .NET Conf 2022
29:00
Diving into Durable Entities
24:11
dotnet
Рет қаралды 4,6 М.
Logic Apps for Everyone - A complete guide for anyone!
50:37
John Savill's Technical Training
Рет қаралды 45 М.
Do NOT Learn Kubernetes Without Knowing These Concepts...
13:01
Travis Media
Рет қаралды 271 М.
Kumanda İle Bilgisayarı Yönetmek #shorts
0:29
Osman Kabadayı
Рет қаралды 4,8 МЛН
POV: You Find a 🗑️ Full of iPhones ⭐
0:13
Shakeuptech
Рет қаралды 1,5 МЛН
Почему iPhone 16 никого не удивит?
0:42
ÉЖИ АКСЁНОВ
Рет қаралды 106 М.
Что делать если в телефон попала вода?
0:17
Лена Тропоцел
Рет қаралды 4,7 МЛН
Как бесплатно замутить iphone 15 pro max
0:59
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 9 МЛН