Best configuration for Hangfire Deployment

HI, i use Hangfire from several years, in differnt way (IIs, widnwos service and some experiment as docker). I need to use it i a very large projects with milion of jobs at week.

Based on you experience which is best deployment option?

I was thiking to use IIS on windows machine, because using it in docker for the oment, will introduce other issues that i have no time to take in accounting.

Stack: .NET 9

Thanks for your experiences, bye

Hi, we run our workers in a console app deployed in k8s. Currently running 6 containers and it processes ~400k jobs / day and it works well. Before that we ran them as a windows service with topshelf and that worked fine too.

Thanks for your answer. Which worker count do you have on each container? And how many physical server just to have an idea?

I was thinking to k8s but I have some doubt about CI/CD, how do you manage queues? Do you have a deployment for different queue?

Thsnks for sharing your experience