Hi,
I have been using hangfire’s enqueue method for the past seven months. However, off-late, Multiple requests seem to be failing.
My implementation involves a call being made to an API. This call triggers a requests which is enqueued to Hangfire. If hangfire takes too long, the request times out and I get an error.
Looking into the logs I found that usually it took 0.2 seconds to process the job (time difference between [Hangfire].[Job].[CreatedAt] and [Hangfire].[Job].[ExpiredAt]. However, all the jobs which failed take more than 10 seconds to process(some get stuck in ‘Enqueue’ state forever)
What can I do to improve the turnaround time vis-a-vis performance?