The clusterId parameter is a critical configuration setting when using the AWS Advanced JDBC Wrapper to connect to multiple database clusters within a single application. This parameter serves as a unique identifier that enables the driver to maintain separate caches and state for each distinct database cluster your application connects to.
Understanding what constitutes a cluster is crucial for correctly setting the clusterId parameter. In the context of the AWS Advanced JDBC Wrapper, a cluster is a logical grouping of database instances that should share the same topology cache and monitoring services.
A cluster represents one writer instance (primary) and zero or more reader instances (replicas). These make up shared topology that the driver needs to track, and are the group of instances the driver can reconnect to when a failover is detected.
- Aurora DB Cluster (one writer + multiple readers)
- RDS Multi-AZ DB Cluster (one writer + two readers)
- Aurora Global Database (when supplying a global db endpoint, the driver considers them as a single cluster)
Rule of thumb: 👍 If the driver should track separate topology information and perform independent failover operations, use different
clusterIdvalues. If instances share the same topology and failover domain, use the sameclusterId.
The AWS Advanced JDBC Wrapper uses the clusterId as a key for internal caching mechanisms to optimize performance and maintain cluster-specific state. Without proper clusterId configuration, your application may experience:
- Cache collisions between different clusters
- Incorrect topology information
- Degraded performance due to cache invalidation
Host information can take many forms:
- IP Address Connections:
jdbc:aws-wrapper:mysql://10.0.1.50:3306/mydb← No cluster info! - Custom Domain Names:
jdbc:aws-wrapper:mysql://db.mycompany.com:3306/mydb← Custom domain - Custom Endpoints:
jdbc:aws-wrapper:mysql://my-custom-endpoint.cluster-custom-abc.us-east-1.rds.amazonaws.com:3306/mydb← Custom endpoint - Proxy Connections:
jdbc:aws-wrapper:mysql://my-proxy.proxy-abc.us-east-1.rds.amazonaws.com:3306/mydb← Proxy, not actual cluster
In fact, all of these could reference the exact same cluster. Therefore, because the driver cannot reliably parse cluster information from all connection types, it is up to the user to explicitly provide the clusterId.
The driver uses clusterId as a cache key for topology information and monitoring services. This enables multiple connections to the same cluster to share cached data and avoid redundant db meta-data.
The following diagram shows how connections with the same clusterId share cached resources:
Key Points:
- Three connections use different connection strings (custom endpoint, IP address, cluster endpoint) but all specify
clusterId: "foo" - All three connections share the same Topology Cache and Monitor Threads in the driver
- The Topology Cache stores a key-value mapping where
"foo"maps to["instance-1", "instance-2", "instance-3"] - Despite different connection URLs, all connections monitor and query the same physical database cluster
The Impact Shared resources eliminate redundant topology queries and reduce monitoring overhead.
The following diagram shows how different clusterId values maintain separate caches for different clusters.
Key Points:
- Connection 1 and 3 use
clusterId: "foo"and share the same cache entries - Connection 2 uses
clusterId: "bar"and has completely separate cache entries - Each
clusterIdacts as a key in the cache Map structure:Map<String, CacheValue> - Topology Cache maintains separate entries:
"foo"→[instance-1, instance-2, instance-3]and"bar"→[instance-4, instance-5] - Monitor Cache maintains separate monitor threads for each cluster
- Monitors poll their respective database clusters and update the corresponding topology cache entries
The Impact This isolation prevents cache collisions and ensures correct failover behavior for each cluster.
You must specify a unique clusterId for every DB cluster when your application connects to multiple database clusters:
// Sample data migration app
Properties sourceProps = new Properties();
sourceProps.setProperty("clusterId", "source-cluster");
sourceProps.setProperty("user", "admin");
sourceProps.setProperty("password", "***");
Connection sourceConn = DriverManager.getConnection(
"jdbc:aws-wrapper:mysql://source-db.us-east-1.rds.amazonaws.com:3306/mydb",
sourceProps
);
Properties destProps = new Properties();
destProps.setProperty("clusterId", "destination-cluster"); // Different clusterId!
destProps.setProperty("user", "admin");
destProps.setProperty("password", "***");
Connection destConn = DriverManager.getConnection(
"jdbc:aws-wrapper:mysql://dest-db.us-west-2.rds.amazonaws.com:3306/mydb",
destProps
);
// Read from source, write to destination
ResultSet rs = sourceConn.createStatement().executeQuery("SELECT * FROM users");
PreparedStatement ps = destConn.prepareStatement("INSERT INTO users VALUES (?, ?, ?)");
// ... migration logic
// If you are connecting `source-db` with a different url later on, then you should use the same clusterId.
Properties sourcePropsIp = new Properties();
sourcePropsIp.setProperty("clusterId", "source-cluster"); // Same ID as sourceConn
sourcePropsIp.setProperty("user", "admin");
sourcePropsIp.setProperty("password", "***");
Connection sourceIpConn = DriverManager.getConnection(
"jdbc:aws-wrapper:mysql://10.0.0.1:3306/mydb",
sourcePropsIp
);If your application only connects to one cluster, you can omit clusterId (defaults to "1"):
// Single cluster - clusterId defaults to "1"
Connection conn = DriverManager.getConnection(
"jdbc:aws-wrapper:mysql://my-cluster.us-east-1.rds.amazonaws.com:3306/mydb",
props
);This also includes if you have multiple connections using different host information:
String url = "jdbc:aws-wrapper:mysql://my-cluster.us-east-1.rds.amazonaws.com:3306/mydb"
Properties props = new Properties(); // clusterId defaults to 1
Connection urlConn = DriverManager.getConnection(url, props);
// "10.0.0.1" -> ip address of source-db. So it is the same cluster.
String ipUrl = "jdbc:aws-wrapper:mysql://10.0.0.1:3306/mydb"
Properties ipProps = new Properties(); // clusterId defaults to 1
Connection ipConn = DriverManager.getConnection(ipUrl, ipProps);Using the same clusterId for different database clusters will cause serious issues:
// ❌ WRONG - Same clusterId for different clusters
Properties sourceProps = new Properties();
sourceProps.setProperty("clusterId", "shared-id"); // ← BAD!
Connection sourceConn = DriverManager.getConnection(
"jdbc:aws-wrapper:mysql://source-db.us-east-1.rds.amazonaws.com:3306/db",
sourceProps
);
Properties destProps = new Properties();
destProps.setProperty("clusterId", "shared-id"); // ← BAD! Same ID for different cluster
Connection destConn = DriverManager.getConnection(
"jdbc:aws-wrapper:mysql://dest-db.us-west-2.rds.amazonaws.com:3306/db",
destProps
);Problems this causes:
- Topology cache collision (dest-db's topology could overwrite source-db's)
- Incorrect failover behavior (driver may try to failover to wrong cluster)
- Monitor conflicts (Only one monitor instance for both clusters will lead to undefined results)
Correct approach:
// ✅ CORRECT - Unique clusterId for each cluster
sourceProps.setProperty("clusterId", "source-cluster");
destProps.setProperty("clusterId", "destination-cluster");Using different clusterId values for the same cluster reduces efficiency:
// ⚠️ SUBOPTIMAL - Different clusterIds for same cluster
String sameClusterUrl = "jdbc:aws-wrapper:mysql://my-cluster.us-east-1.rds.amazonaws.com:3306/db"
Properties props1 = new Properties();
props1.setProperty("clusterId", "my-cluster-1");
Connection conn1 = DriverManager.getConnection(sameClusterUrl, props1);
Properties props2 = new Properties();
props2.setProperty("clusterId", "my-cluster-2"); // Different ID for same cluster
Connection conn2 = DriverManager.getConnection(sameClusterUrl, props2);Problems this causes:
- Duplication of caches
- Multiple monitoring threads for the same cluster
Best practice:
// ✅ BEST - Same clusterId for same cluster
final String CLUSTER_ID = "my-cluster";
sourceProps1.setProperty("clusterId", CLUSTER_ID);
sourceProps2.setProperty("clusterId", CLUSTER_ID); // Shared cache and resourcesThe clusterId parameter is essential for applications connecting to multiple database clusters. It serves as a cache key for topology information and monitoring services. Always use unique clusterId values for different clusters, and consistent values for the same cluster to maximize performance and avoid conflicts.

