Companies Home Search Profile

Azure Durable Functions: A Practical Guide

Focused View

Cloud Shikshak

3:30:50

59 View
  • 1 - Course Structure.mp4
    03:10
  • 2 - Get Most Out of The Course.mp4
    01:07
  • 3 - Sign Up for Azure Account.mp4
    04:35
  • 4 - Azure Function Triggers.txt
  • 4 - Section Overview.mp4
    00:30
  • 5 - Serverless Overview.mp4
    03:29
  • 6 - Serverless Services in Azure.mp4
    05:49
  • 7 - Azure Functions Overview.mp4
    04:36
  • 7 - Azure Function Triggers.txt
  • 8 - Azure Function Resources.html
  • 9 - What are Durable Functions.mp4
    04:15
  • 10 - Durable Functions Common Workflows.mp4
    02:50
  • 11 - Durable Function Types.mp4
    04:52
  • 12 - Section Summary.mp4
    00:34
  • 13 - Section Overview.mp4
    00:44
  • 14 - Development Options for Durable Functions.mp4
    03:19
  • 14 - Durable Functions Supported Languages.txt
  • 15 - Azure Functions Core Tool.txt
  • 15 - Setting up Visual studio code with Durable Functions.mp4
    02:40
  • 16 - Implementing First Durable Function.mp4
    09:16
  • 17 - Postman REST Client.txt
  • 17 - Testing Durable Functions Locally.mp4
    03:46
  • 18 - Understanding State Management with Event Sourcing.mp4
    04:08
  • 19 - Section Summary.mp4
    00:31
  • 20 - Section Overview.mp4
    00:48
  • 21 - Understanding Function Chaining Workflow.mp4
    01:15
  • 22 - Demo Use Case.mp4
    02:30
  • 23 - Demo Source Code.html
  • 24 - Create Durable Orchestrator and Client Function.mp4
    03:41
  • 25 - Download and Store Image to Blob Storage.mp4
    06:36
  • 26 - Analyze Image using Cognitive Service.mp4
    09:02
  • 26 - Sample Image.txt
  • 27 - Store Analysis Result in Database.mp4
    05:43
  • 28 - Orchestrator Code Constraints.mp4
    02:42
  • 28 - Orchestrator Code Constraints.txt
  • 29 - Section Summary.mp4
    00:41
  • 30 - Section Overview.mp4
    00:28
  • 31 - Understanding FanoutFanin Workflow.mp4
    01:53
  • 32 - Demo Use Case.mp4
    02:28
  • 33 - Demo Source Code.html
  • 34 - Initialize and Collect Data.mp4
    04:56
  • 35 - Parallel Processing with Fanout Workflow.mp4
    05:46
  • 36 - Aggregate Results.mp4
    02:49
  • 37 - Section Summary.mp4
    00:45
  • 38 - Section Overview.mp4
    00:41
  • 39 - Understanding Monitor Workflow.mp4
    02:58
  • 40 - Demo Use Case.mp4
    02:08
  • 41 - Demo Source Code.html
  • 42 - Passing Validated Input to Orchestrator.mp4
    05:34
  • 43 - Open Weather API.txt
  • 43 - Open Weather API Registration.mp4
    05:34
  • 44 - Timers in Durable Function.mp4
    03:32
  • 45 - Get Current Temperature using Open Weather API.mp4
    03:38
  • 46 - Custom Orchestrator Status.mp4
    01:41
  • 47 - Dynamic Polling Interval Logic in Orchestrator.mp4
    03:11
  • 48 - Send Alert Message with Twilio Binding.mp4
    08:42
  • 49 - Section Summary.mp4
    00:43
  • 50 - Section Overview.mp4
    00:30
  • 51 - Understanding Human Interaction Workflow.mp4
    02:37
  • 52 - Demo Use Case.mp4
    02:03
  • 53 - Demo Source Code.html
  • 54 - Validate Phone Number.mp4
    07:07
  • 55 - Send Challenge Code.mp4
    04:47
  • 56 - Wait for External Events.mp4
    04:39
  • 57 - Send External Event to Durable Function.mp4
    02:45
  • 58 - Section Summary.mp4
    00:40
  • 59 - Section Overview.mp4
    00:34
  • 60 - Understanding Durable Entities.mp4
    03:19
  • 61 - Demo Use Case.mp4
    02:24
  • 62 - Demo Source Code.html
  • 63 - Defining Entities.mp4
    02:31
  • 64 - Access Entity from Durable Client.mp4
    04:54
  • 65 - Access Entity from Durable Orchestrator.mp4
    02:34
  • 66 - Section Summary.mp4
    00:38
  • 67 - Section Overview.mp4
    00:28
  • 68 - Deploy Durable Function to Azure.mp4
    06:29
  • 69 - Securing Durable Functions.mp4
    07:34
  • 70 - Course Summary.mp4
    03:04
  • 71 - Thank You.mp4
    00:37
  • 72 - Whats next BONUS.html
  • Description


    Learn about Azure Durable Functions with 5 demos to implement complex stateful serverless workflows!

    What You'll Learn?


    • Fundamental understanding of Azure Durable Functions
    • Develop, debug and test Durable Functions locally and deploy to Azure using Visual Studio Code
    • Understand common workflows suited for Durable Functions
    • Hands on knowledge of each workflow by implementing 5 real world use cases

    Who is this for?


  • Anyone who wants to learn about implementing highly scalable and cost-efficient serverless applications
  • Developers who want to learn hands on about implementing stateful workflows in serverless environment
  • Solutions architect who want to understand how complex long running workflows are architected, built and deployed using the best practices on Azure
  • What You Need to Know?


  • Basic understanding of Azure Functions would be advantageous
  • A free or paid subscription to Microsoft Azure
  • Excitement to learn Microsoft's constantly growing cloud platform!!!
  • More details


    Description

    Serverless computing is the future of Cloud Computing!!!


    Azure function lets you run code on demand without provisioning or managing any servers in cloud. It allows developers to create a short-lived, stateless function that has one responsibility.


    While this is great, there are some drawbacks. What if we have a complex workflow that takes a long time to complete or is not stateless? This is where Durable Functions come in.


    Durable Functions is an extension of Azure Function that lets you write stateful functions in a serverless compute environment. Durable Function provides a powerful and flexible way to build complex, long-running workflows in the cloud, while abstracting away many of the underlying infrastructure and management concerns.


    After an introduction to Durable Function, we'll dive right in to the details including:

    • Durable Function Types

    • Setup local development environment. Develop and test Durable Functions locally and deploy to Azure

    • Common workflows suitable for Durable Functions

    • Practice with real world demos for each of the 5 workflows

    • Deploy your locally develop function to Azure and secure the function app

    • And more…


    Source code is provided for each demo, so you will always stay up-to-date with the course pacing.


    By end of these sections, you will have a solid understanding about all the common workflows, and confidence to implement them in your use cases.


    This course also comes with:


    • Lifetime Access to All Future Updates

    • Links to interesting articles, and lots of code to practice and improve

    • A 30 Day "No Questions Asked" Money Back Guarantee!


    Serverless is the way of future and you can get started today and become an expert. Let's have some fun and build some awesome stuff in cloud together!

    Who this course is for:

    • Anyone who wants to learn about implementing highly scalable and cost-efficient serverless applications
    • Developers who want to learn hands on about implementing stateful workflows in serverless environment
    • Solutions architect who want to understand how complex long running workflows are architected, built and deployed using the best practices on Azure

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Cloud Shikshak
    Cloud Shikshak
    Instructor's Courses
    CloudShikshak is created to help anyone learn about cloud technologies. We are a group of experienced instructors and software architects with multiple certifications and practical experience in AWS, Azure and other industry technologies. Our focus is to create high quality and engaging content for our students to make learning about cloud technologies as easy as possible.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 65
    • duration 3:30:50
    • Release Date 2023/06/11