Top "Hangfire" questions

Hangfire is an open-source framework that helps you to create, process and manage your background jobs in .NET Framework and .NET Core.

Execute a recurring job in Hangfire every 8 days

Is it possible to create a recurring job in Hangfire that executes after a given number of days, say 8. The …

c# cron hangfire
Hangfire DisableConcurrentExecution: What happens when the timeout expires?

Per the Hangfire 0.8.2 announcement post, Hangfire has a DisableConcurrentExecution filter which, when applied to a method, prevents multiple instances of …

c# hangfire
Hangfire - Prevent multiples of the same job being enqueued

Scenario: Job 1 is scheduled to run every 5 minutes, and takes ~1 minute to complete. A lot of work piles up and …

c# asp.net hangfire
Hangfire dependency injection lifetime scope

I'm rewriting this entire question because I realize the cause, but still need a solution: I have a recurring job …

c# autofac hangfire
Check if HangFire.JobStorage is instantiated

I have a ASP.NET MVC Application that works as Hangfire client - it enqueues different jobs. I am using …

c# asp.net asp.net-mvc hangfire
Hangfire recurring job daily on specific time

I am trying to run hangfire recurring job daily on 9.00 AM. Here is what I want to do- RecurringJob.AddOrUpdate(() =&…

asp.net-mvc background-process hangfire recurring
Using Hangfire, connection string given in Startup.cs throws Cannot attach file as database error

I'm utilizing Hangfire in my ASP .Net MVC Web App, it had installed successfully. I'd like to use the same …

c# asp.net connection-string hangfire
Hangfire Dashboard Authorization Config Not working

I've downloaded the nu-get package Hangfire.Dashboard.Authorization I'm trying configure the OWIN based authorization as per the docs as …

c# asp.net-mvc owin hangfire
Disable re-queueing of failed Hangfire BackgroundJob

Is there a way to disable re-queueing of a failed Hangfire BackgroundJob? We do not want the failed jobs to …

c# hangfire
How to prevent a Hangfire recurring job from restarting after 30 minutes of continuous execution

I am working on an asp.net mvc-5 web application, and I am facing a problem in using Hangfire tool …

asp.net iis asp.net-mvc-5 background-process hangfire