Hello,
We have healthcare office in 800 locations and
Right now we have web application and each facility manager click web application button triggers api which does complex backend operation and getting time out some times. to avoid that, i am planning to do this on the c# console application job.
I have a c# console application created and can be scheduled on task scheduler. have 5 servers to deploy this. this batch job calls multiple procs and its does complex operations. so one facility will take 3-4 minutes to finish operation. I cannot do sequential operation like one facility at a time. I need to run this for 800 facilities at a time. This has to happen 5pm everyday for each facility. What is the best way to achieve this scenario from architectural perspective.