Hangfire.MaximumConcurrentExecutions
Hangfire.MaximumConcurrentExecutions copied to clipboard
Adds [MaximumConcurrentExecutions(n)] attribute to Hangfire.IO to throttle executions of a job
Keep getting a distributed lock time out on a recurring job that fires every 15th minute. ```[MaximumConcurrentExecutions(1)]``` ```Hangfire.Storage.DistributedLockTimeoutException: Timeout expired. The timeout elapsed prior to obtaining a distributed lock on...
See https://github.com/HangfireIO/Hangfire/issues/1053 - we have all the same problems because we use the same implementation
I would like to know if the `Hangfire.MaximumConcurrentExecutions` package is compatible with the latest versions of Hangfire, specifically version 1.8+ which was released in April 2023. ## Context Hangfire 1.8.0...