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

Поділитися
Вставка
  • Опубліковано 19 сер 2024

КОМЕНТАРІ • 29

  • @sureshsambana5219
    @sureshsambana5219 3 роки тому

    Crystal clear presentation. Learnt a lot from this video.
    Thank you so much Jeff Hollan.

  • @archie1804
    @archie1804 4 роки тому +1

    Thank you very much. All of that I needed was here.

  • @kirankkadam
    @kirankkadam 5 років тому +2

    Very well presented. Would love to see more video's from Jeff.

  • @anthony.7777
    @anthony.7777 5 років тому +3

    Brillant talk, thanks Jeff !

  • @pequod4557
    @pequod4557 Рік тому

    Thank you so much for this well-made presentation!

  • @ashutoshtriptiSharma
    @ashutoshtriptiSharma 4 роки тому

    I like the examples. Thanks Jeff. Well explained

  • @jamesmorey1561
    @jamesmorey1561 5 років тому +2

    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 :-)

  • @annablendermann
    @annablendermann 3 роки тому

    Great video. Thank you Jeff!

  • @atifzafarkhan6703
    @atifzafarkhan6703 3 роки тому

    Awesome video !! Great contents to start with :)

  • @PeriMCS
    @PeriMCS 4 роки тому +1

    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 років тому +1

    Wonderful !

  • @codewithparveenyadav
    @codewithparveenyadav 5 років тому

    this is wonderful

  • @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 ??

  • @leroylimll
    @leroylimll 5 років тому +1

    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?

  • @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

  • @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?

  • @NonnoSgrenf
    @NonnoSgrenf Рік тому

    Every time an orchestrator is started it generates a new workerID right?

  • @yetanotherchannelyac1434
    @yetanotherchannelyac1434 3 роки тому

    This is great. SDK-focused Durable Functions seem really good for certain use cases! How do you price Durable Functions?

  • @ProGaming-kb9io
    @ProGaming-kb9io 2 роки тому

    good intro. but it is start in14:13

  • @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 :)

  • @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 ?

  • @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