Quote:
Originally posted by kmesser
sreddy,
If an authenticated user is logged in through an instance which fails, wouldn't that user lose their connection? So if they could be dynamically rerouted through the application, they'd have to re-authenticate?!
I guess there's really no way around that problem. If you could, for example put the authentication into the load balancing system, then if that system fails, all the users are disconnected anyway. Would OS authentication be part of high availability, from a client connection perspective?
You have to design your application keeping in mind the implementation of OPS. If it can't connect to database for some reason(say OPS instance failure), control your application logic to connect/ retry the database after looping thru the exception for first time. By the time it retries there will be connection established with the other node taken the work load of failed node. Here Iam trying to say the possibility, the actual implementation might varies.