Hi Friends,
Suppose you have a web appliction which consists of 100
clients are connected with Connection pooling and they are
associated with 100 connection objcet and connected
with DB sever,Due some problem DB-Server suddenly crashed
and server came to down state for a while after few minutes
DB-server once again up,Now how will I manage my Pool
Management with my 100 clients...can any one tell
me??????????????????
Answer Posted / amit arora
I believe if db server suddenly crashed, then all the
connections are lost.
Also, all the sessions are expired for each and every
client.
now, when db-server is again up.
As soon as first client request for any data. (if session
tracking) then It will creates new session and create first
connection.(or get the first connection from the connection
pool). Summary- Connection pool need to be reset from
begining, and this will grow up the conections as per your
original logic.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What do you mean by scope object and what are its types?
Explain the difference between servlet and cgi?
Explain mvc pattern.
What exception should be thrown when servlet is not properly initialized?
What is Servlet API used for connecting database?
Which interface should be implemented by all servlets?
What is life cycle of Servlet?
Differentiate between the print writer and servlet output stream?
I Have A Plan to develop a Project in Struts,I want the template of struts project with Hibernate.Canany body provide me the required information?
What are common tasks performed by Servlet Container?
Can you create a deadlock condition on a servlet?
What is the difference between Servlet Request and Servlet Context when calling a Request Dispatcher?
What are different Authentication options available in Servlets.
How to get the IP address of client in servlet?
What is difference between get and post method?