hangfire Questions
5
I'm utilizing Hangfire in my ASP .Net MVC Web App, it had installed successfully. I'd like to use the same LocalDb to store queued jobs for Hangfire to dequeue and process as I've used to stored da...
Clinkstone asked 14/1, 2015 at 20:48
2
Solved
I have scheduled a Job via using Hangfire library. My scheduled Code like below.
BackgroundJob.Schedule(() => MyRepository.SomeMethod(2),TimeSpan.FromDays(7));
public static bool DownGradeUser...
Yippie asked 8/8, 2018 at 21:42
2
Solved
I have a ASP.NET MVC Application that works as Hangfire client - it enqueues different jobs. I am using SqlServerJobStorage for Hangfire usage.
For now i am working on a scenario when there is no ...
Shrive asked 6/6, 2017 at 9:38
2
Solved
We are using Hangfire in production and turns out that we literally reach the database connections max limitation.
We have about 45 connections for just hangfire which seems a bit too much for jus...
Rhizopod asked 7/5, 2019 at 9:23
1
I have ASP.NET Core API (v 2.2) running under IIS using Windows Hosting module that is shipped with .NET Core. I have configured Hangfire in startup.cs with couple of recurring jobs.
The API's ap...
Careful asked 12/7, 2019 at 16:14
2
Solved
I noticed this field in the Hangfire Dashboard for a succeeded job:
I would love to shove some data in there, to give me more information about what the job did.
How would I do that?
I have se...
2
Solved
I have a few jobs executed one after the other via ContinueJobWith<MyHandler>(parentJobId, x => x.DoWork()).
However, the second job is not getting processed and always sits in Awaiting st...
2
Solved
I am using Hangfire to do jobs, and I'd like to change the behaviour that succeeded jobs are deleted from the database after a day - I'd like them to be stored for a year.
Following the instructio...
2
Solved
I am having a problem that some jobs on hangfire are been queued more than one time with the same parameters, the jobs are almost queued at the same time.
I've tried to limit the numbers of worker...
Cogitate asked 14/5, 2020 at 19:6
4
I managed to work Hangfire on my ASP.NET Core MVC application, and now I am trying to add admin authorization.
I added the following code to the Startup.cs file:
app.UseHangfireDashboard("/hangfi...
Fractious asked 12/1, 2017 at 21:46
2
I'm using in memory based Hangfire(1.6.21) within an ASP.net core (2.2) application. In Startup.cs I'm configuring a service as a singleton:
services.AddSingleton<IXXXService, XXXService>();...
Sorosis asked 19/2, 2019 at 10:6
4
I've just installed Hangfire package in my MVC website.
I've created a Startup class
[assembly: OwinStartup(typeof(Website.Startup))]
namespace Website
{
public partial class Startup
{
public...
4
I am using Hangfire in an ASP.NET MVC5 application to send an email. Until now, it was working fine, but now when I run the application, it is throwing this error:
There is already an object nam...
Zoospore asked 16/12, 2016 at 4:19
1
the hangfire docs state:
One of the main disadvantage of raw SQL Server job storage implementation – it uses the polling technique to fetch new jobs. Starting from Hangfire 1.7.0 it’s possible to ...
Cesura asked 27/11, 2019 at 15:36
3
We are using Hangfire 1.7.2 within our ASP.NET Web project with SQL Server 2016. We have around 150 sites on our server, with each site using Hangfire 1.7.2. We noticed that when we upgraded these ...
Dodd asked 27/5, 2019 at 7:46
2
I am a beginner with HangFire and looking forward to using HangFire to call some actions in my web application monthly. But these actions require HttpContext.
Then my question is: Is there any way...
Titos asked 21/11, 2017 at 2:59
2
Solved
We have a web application and we are using log4net for logging. Recently I installed hangfire and now my log table (sqlserver db) is full of log enteries from hangfire. I want to minimise this to e...
Chun asked 2/5, 2016 at 14:21
4
Solved
I am working on an asp.net mvc-5 web application, and I am facing a problem in using Hangfire tool to run long running background jobs. the problem is that if the job execution exceed 30 minutes, t...
Durbar asked 30/10, 2015 at 0:33
2
Solved
I have implemented a custom state "blocked" that moves into the enqueued state after certain external requirements have been fulfilled.
Sometimes these external requirements are never fulfilled w...
1
Solved
I got a SaaS project that needs the use Hangfire. We already implemented the requirements to identify a tenant.
Architecture
Persistence Layer
Each tenant has it's own database
.NET Core
We...
Stormi asked 7/8, 2019 at 12:38
1
So my problem is as follows: The method/function I'm scheduling to/with Hangfire performs a lot of logging of relevant information using NLog. When running the method without hangfire I'm getting a...
2
Solved
I'm developing an ASP.net MVC 5 web site and I'm using Hangfire for scheduling some tasks, in this case just one every 3 min. I know for a fact that it takes only a few seconds to run such task (an...
Saida asked 19/5, 2015 at 20:16
2
Im new to hangfire, and im trying to setup a way to log the events using my existing serilog logger in an asp.net web api. Here is my logger class:
public static class LoggerInitializer
{
privat...
0
.Net Core 2.2
Hangfire.Core 1.6.22
Hangfire.SqlServer 1.6.22
Hangfire 1.6.22
I have created a sample proof of concept for using Hangfire for multiple applications (2 console applications) but with...
Cenobite asked 30/1, 2019 at 17:40
1
Solved
I have a hangfire worker role with the following service definition:
<?xml version="1.0" encoding="utf-8"?>
<ServiceDefinition name="Company.ServiceA.Cloud.Hangfire" xmlns="http://schemas...
Lemmy asked 18/4, 2018 at 13:48
© 2022 - 2024 — McMap. All rights reserved.