Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

transfer session state during failover #814

Merged
merged 2 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions wrapper/src/main/java/software/amazon/jdbc/Driver.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
import java.util.logging.Handler;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable;
import software.amazon.jdbc.profile.ConfigurationProfile;
import software.amazon.jdbc.profile.DriverConfigurationProfiles;
Expand Down Expand Up @@ -112,7 +110,7 @@ public Connection connect(final String url, final Properties info) throws SQLExc
PropertyDefinition.DATABASE.set(props, databaseName);
}

LOGGER.finest(() -> PropertyUtils.logProperties(props, "DEBUG: Connecting with properties: \n"));
LOGGER.finest(() -> PropertyUtils.logProperties(props, "Connecting with properties: \n"));

final String profileName = PropertyDefinition.PROFILE_NAME.getString(props);
ConfigurationProfile configurationProfile = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ public Connection connect(
final @NonNull Properties props)
throws SQLException {

LOGGER.finest(() -> "DEBUG: Connecting with properties:\n"
+ PropertyUtils.logProperties(props, ""));
LOGGER.finest(() -> PropertyUtils.logProperties(props, "Connecting with properties: \n"));

final Properties copy = PropertyUtils.copyProperties(props);
dialect.prepareConnectProperties(copy, protocol, hostSpec);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -482,13 +482,17 @@ private boolean canUpdateTopology(final String methodName) {
/**
* Connects this dynamic failover connection proxy to the host pointed out by the given host
* index.
* <p></p>
* The method assumes that current connection is not setup. If it's not true, a session state
* transfer from the current connection to a new one may be necessary. This should be handled by callee.
*
* @param host The host.
* @throws SQLException if an error occurs
*/
private void connectTo(final HostSpec host) throws SQLException {
try {
switchCurrentConnectionTo(host, createConnectionForHost(host));
this.pluginService.setCurrentConnection(createConnectionForHost(host), host);

LOGGER.fine(
() -> Messages.get(
"Failover.establishedConnection",
Expand Down Expand Up @@ -536,26 +540,20 @@ private boolean shouldAttemptReaderConnection() {
}

/**
* Replaces the previous underlying connection by the connection given. State from previous
* connection, if any, is synchronized with the new one.
* Synchronizes state from current connection, if any, is the new one.
*
* @param host The host that matches the given connection.
* @param connection The connection instance to switch to.
* @param newHostSpec The host that matches the given connection.
* @param newConnection The connection instance to switch to.
* @throws SQLException if an error occurs
*/
private void switchCurrentConnectionTo(final HostSpec host, final Connection connection) throws SQLException {
private void transferSessionStateToNewConnection(final HostSpec newHostSpec, final Connection newConnection)
throws SQLException {

Connection currentConnection = this.pluginService.getCurrentConnection();
HostSpec currentHostSpec = this.pluginService.getCurrentHostSpec();

if (currentConnection != connection) {
transferSessionState(currentConnection, currentHostSpec, connection, host);
invalidateCurrentConnection();
}

this.pluginService.setCurrentConnection(connection, host);

if (this.pluginManagerService != null) {
this.pluginManagerService.setInTransaction(false);
if (currentConnection != newConnection) {
transferSessionState(currentConnection, currentHostSpec, newConnection, newHostSpec);
}
}

Expand Down Expand Up @@ -744,7 +742,9 @@ protected void failoverReader(final HostSpec failedHostSpec) throws SQLException

if (keepSessionStateOnFailover) {
restoreSessionState(result.getConnection());
transferSessionStateToNewConnection(result.getHost(), result.getConnection());
}
this.invalidateCurrentConnection();
this.pluginService.setCurrentConnection(result.getConnection(), result.getHost());

this.pluginService.getCurrentHostSpec().removeAlias(oldAliases.toArray(new String[]{}));
Expand Down Expand Up @@ -801,7 +801,9 @@ protected void failoverWriter() throws SQLException {
final HostSpec writerHostSpec = getWriter(failoverResult.getTopology());
if (keepSessionStateOnFailover) {
restoreSessionState(failoverResult.getNewConnection());
transferSessionStateToNewConnection(writerHostSpec, failoverResult.getNewConnection());
}
this.invalidateCurrentConnection();
this.pluginService.setCurrentConnection(failoverResult.getNewConnection(), writerHostSpec);

LOGGER.fine(
Expand Down
Loading