FM
Hey Bogdan, Thanks for the nice articles! In the end did your team consider K8s CronJobs? For similar reasons to yours: db perf, I don't want to use Hangfire anymore, but also to keep the overall architecture simpler. Since we will anyway run in K8s, we consider using K8s CronJobs. The idea would be to call an HTTP endpoint, for ex: /jobs/doSomeLongRunningStuff Since it's not a good practice to have long running HTTP calls, it would simply enqueue a message. Later on, this would be dequeued and processed. Basically we trade the DB for the message queue.