I have a java application running on tomcat. I want to connect it to my MySQL cluster.
In the cluster I have three SQL nodes. I want to attempt a connection to all three nodes and then take the connection that returns to me the fastest!
How can i go about doing this? Performance is really important to me.
Here is what i have thus far:
A connector class
public class Connecter extends Thread {
String dbURL;
String dbDriver = "com.mysql.jdbc.Driver";
Connection dbCon = null;
public Connecter(String dbURL) {
this.dbURL = dbURL;
}
@Override
public void run() {
try {
Class.forName(dbDriver);
try {
dbCon = DriverManager.getConnection(dbURL, "root", "");
} catch (SQLException ex) {
}
} catch (ClassNotFoundException ex) {
}
}
}
A closer class
public void run() {
try {
dbCon.close();
} catch (SQLException ex) {
ex.printStackTrace();
} catch (NullPointerException e) {}
}
And a DbBean attempting to connect via this method:
String dbURL1 = "jdbc:mysql://192.168.0.3/bank";
String dbURL2 = "jdbc:mysql://192.168.0.4/bank";
String dbURL3 = "jdbc:mysql://192.168.0.5/bank";
String dbDriver = "com.mysql.jdbc.Driver";
private Connection dbCon;
public boolean connect() throws ClassNotFoundException, SQLException, InterruptedException {
Class.forName(dbDriver);
Connecter one = new Connecter(dbURL1);
Connecter two = new Connecter(dbURL2);
Connecter three = new Connecter(dbURL3);
Closer a = new Closer (one.dbCon);
Closer b = new Closer (two.dbCon);
Closer c = new Closer (three.dbCon);
one.start();
two.start();
three.start();
while(one.isAlive() && two.isAlive() && three.isAlive()){
Thread.sleep(10);
}
if(one.dbCon != null) {
this.dbCon = one.dbCon;
two.interrupt();
b.start();
three.interrupt();
c.start();
return true;
} else {
one.interrupt();
a.start();
}
if(two.dbCon != null) {
this.dbCon = two.dbCon;
one.interrupt();
a.start();
three.interrupt();
c.start();
return true;
} else {
two.interrupt();
b.start();
}
if(three.dbCon != null) {
this.dbCon = three.dbCon;
one.interrupt();
a.start();
two.interrupt();
b.start();
return true;
} else {
three.interrupt();
c.start();
}
return false;
}