Hangfire.PostgreSql
Hangfire.PostgreSql copied to clipboard
PostgreSql Storage Provider for Hangfire
Just have an additional comment :) Maybe not the right thread, please tell me if I should ask (or read) it somewhere else. How versions are organized in this package?...
We're getting an exception when attempting to retrieve the list of fetched jobs via the Monitoring API. This line of code: `JobStorage.Current.GetMonitoringApi().FetchedJobs("default", 0, int.MaxValue)` Causes the following exception: ``` System.ArgumentException:...
We get an exception, because we somehow have two entries for the same jobid with the same name in our hangfire db, table jobparameter. So the upsert in PostgreSqlConnection does...
I had Hangfire.AspNetCore 1.7.36 and Hangfire.PostgreSql 1.19.12. Then I updated to Hangfire.AspNetCore 1.8.12 and Hangfire.PostgreSql 1.20.8 and I get an error. ``` System.Dynamic.UpdateDelegates.UpdateAndExecuteVoid3 | Error while executing install/upgrade | Npgsql.PostgresException...
Hi Team, We are facing this issue of enqueued count incorrect/mismatch as you can see in the screenshot below. We could not find any solution in hangfire forum or github...
Rate limiting on Hangfire.PostgreSql would be a great feature, and it would be extremely useful to me. I understand the limited resources on this project, but I wonder what it...
Hey I was looking into some metrics and I noticed this [query ](https://github.com/hangfire-postgres/Hangfire.PostgreSql/blob/master/src/Hangfire.PostgreSql/PostgreSqlMonitoringApi.cs#L469) could be much faster. I did some tests, and I was able to get quite a performance...
I'm working on integrating Hangfire, and found what looks like a memory leak. Memory goes to 1.3GB when loading 5000 failed tasks in the UI, and pins there. It looks...
Is there a recommended way to implement the ConnectionFactory. Here is what I have done: ``` public class ConnectionFactory(IServiceProvider serviceProvider) : IConnectionFactory { public NpgsqlConnection GetOrCreateConnection() => serviceProvider.GetRequiredService().CreateConnection(); } ```...
Hi! We are using Hangfire with PostgreSQL (version 1.20.9). Recently, I’ve noticed that the largest table in the hangfire schema is jobqueue (currently containing 3.5 million records, with a size...