Background Tasks Without a Separate Service: Hangfire for ASP.NET

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

КОМЕНТАРІ • 19

  • @mattdgroves
    @mattdgroves 4 роки тому +9

    Thank you so much for joining, asking questions, and checking out this video here on youtube :)

    • @hsa3409
      @hsa3409 4 роки тому +2

      Thank you for the good overview. Are you planning to make your code public?

  • @d1sposablexhero
    @d1sposablexhero 4 роки тому +3

    Thank you for posting this video! Starting to work with Hangfire for my job and this was a great introduction to how it works!

  • @mikejaros5032
    @mikejaros5032 3 роки тому +1

    Just starting to learn Hangfire. Nice explanation.

  • @argniests5357
    @argniests5357 3 роки тому +3

    Thanks for info. Can you explain what happens to your hangfire jobs, if the IIS machine that is hosting the website, crashes, gets restarted for any reason? And what if the IIS machine is running fine, but the MSSQL server goes down without warning? Do you have recommendations on how to recover from those situations?
    It seems to me, that hangfire is 100% counting on the Application pool that is hosting the web site (that has hangfire enabled in it) to be up and running 100% of the time. And if not, then hangfire cannot process the jobs....is that correct? So, basically if IIS is down, so is hangfire.

  • @robl39
    @robl39 9 місяців тому

    There is a NuGet package that allows you to use in memory as the job store instead of a persistent solution like sql server

  • @shashwatdoshi
    @shashwatdoshi 3 роки тому +2

    Should I get the source code link? I want to check for reference.

  • @sofiandaghsen343
    @sofiandaghsen343 Рік тому +1

    Thanks !

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

    One other question, so is hangfire running in a non UI thread (background thread) in the asp.net web application? I believe that is what is going on with it. So therefore it doesnt ever block the UI.

  • @SatyajitDey
    @SatyajitDey 4 роки тому +2

    Code link is missing. Can you please add that?

  • @SLHooLigON
    @SLHooLigON 2 роки тому

    Good Explanation.

  • @SaiKumar-gp3kb
    @SaiKumar-gp3kb Рік тому

    Does hangfire support kerberos authentication?

  • @BenHayat
    @BenHayat 4 роки тому +5

    Link to the code please.

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

    Hi Matthew,
    Can you pls tell if i want to return other class properties how it can be returned through BackgroundJob.Enqueue(). Or it just only returns the job id ?
    Can we use any other method of hangfire which can return all class properties of method which we are calling ?

  • @tamjidsarker3676
    @tamjidsarker3676 4 роки тому +3

    Good explanation. It will be better sharing the source code with us.
    Could you please share the source code?

  • @OeHomestead
    @OeHomestead 2 роки тому

    Quartz.net is just as easy to use as Hangfire, if not easier.

    • @robg112
      @robg112 2 роки тому

      Quartznet does not have a UI for monitoring/reporting the jobs?