HI
I have a simple question for below scenario
Lets say I have two servers with 2 cores each and I have to process a total of 4 tasks/request which takes long time to complete. 2 requests take 5 mins and other 2 request take 10 mins to complete. Whiich is the best load balancing scenario assuming all requests are submitted simultaneously:
1 2 (10 mins) request on one server and other 2 (5 mins) request on another server?
2 one (10 min) and one (5 min) request on one server and another one (10 min) and one (5 min) request on another server?
In my opinion having 2 combination is better solution because if other tasks are submitted, option 2 combination will have lesser context switches . Please advice.