What a score?
Am I following the same information?
In a scenario in which an application has a database residing in an SQL cluster. When the cluster crashes, the SQL connection pool becomes invalid and corrupted. The connection pool must be cleared and re-created without throwing an exception.
From a code point of view, you need to first.
- Send the SQL query to the connection pool.
- Catching an exception to use an invalid SQL connection pool.
- Empty the connection pool or iterate through all the connections until the pool receives the connection.
- Restore a new connection pool.
- Resubmit the SQL query.
My problem is that I am an infrastructure architect, and my coding skills are weak in the best of times.
source share