If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Issue with read queries not being directed to slaves in MMM configuration

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-11-09, 00:39
Salil Salil is offline
Registered User
 
Join Date: May 2003
Location: Bangalore
Posts: 5
Issue with read queries not being directed to slaves in MMM configuration

Hello Friends,
We have 5 databases with 2 masters and 3 slaves. If the first master goes down then the writer role is picked up by the second one. The 3 slaves are in reader role alone. In theory the 3 requests are supposed to be served by the 3 slaves. However, what we find is that when both masters goes down then the application server is unable to connect to any of the 3 slaves. Even read requests are not being serviced so essentially instead of 5 DBs we are dependent on just 2.

Here is the output of mmm_control show' when all DBs are up:

Servers status:
bkup1(192.168.5.81) master/ONLINE. Roles: reader(192.168.5.129), writer(192.168.5.128
db1(192.168.5.84) slave/ONLINE. Roles: reader(192.168.5.132)
db2(192.168.5.87) slave/ONLINE. Roles: reader(192.168.5.133)
db3(192.168.5.90) slave/ONLINE. Roles: reader(192.168.5.130)
pri1(192.168.5.78) master/ONLINE. Roles: reader(192.168.5.131)

Here is the output when two of the masters are down:

Servers status:
bkup1(192.168.5.81) master/HARD_OFFLINE. Roles: None
db1(192.168.5.84) slave/ONLINE. Roles: reader(192.168.5.131), reader(192.168.5.132)
db2(192.168.5.87) slave/ONLINE. Roles: reader(192.168.5.129), reader(192.168.5.133)
db3(192.168.5.90) slave/ONLINE. Roles: reader(192.168.5.130)
pri1(192.168.5.78) master/HARD_OFFLINE. Roles: None

As you can see the reader roles have transistioned to the slaves.
I wrote a small program that makes a read request and read only is set to true using conn.setReadOnly(true) however I get this exception:

Exception in thread "main" com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientC onnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
at sun.reflect.NativeConstructorAccessorImpl.newInsta nce0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInsta nce(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newI nstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Construc tor.java:513)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:40 6)
at com.mysql.jdbc.Util.getInstance(Util.java:381)
at com.mysql.jdbc.SQLError.createSQLException(SQLErro r.java:984)
at com.mysql.jdbc.SQLError.createSQLException(SQLErro r.java:956)
at com.mysql.jdbc.SQLError.createSQLException(SQLErro r.java:926)
at com.mysql.jdbc.ConnectionImpl.createNewIO(Connecti onImpl.java:2253)
at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImp l.java:718)
at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connect ion.java:46)
at sun.reflect.NativeConstructorAccessorImpl.newInsta nce0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInsta nce(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newI nstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Construc tor.java:513)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:40 6)
at com.mysql.jdbc.ConnectionImpl.getInstance(Connecti onImpl.java:302)
at com.mysql.jdbc.NonRegisteringDriver.connect(NonReg isteringDriver.java:282)
at com.mysql.jdbc.ReplicationConnection.<init>(Replic ationConnection.java:95)
at com.mysql.jdbc.NonRegisteringReplicationDriver.con nect(NonRegisteringReplicationDriver.java:116)
at DatabaseTest.main(DatabaseTest.java:36)
Caused by: java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl .java:333)
at java.net.PlainSocketImpl.connectToAddress(PlainSoc ketImpl.java:195)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.j ava:182)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.j ava:366)
at java.net.Socket.connect(Socket.java:519)
at java.net.Socket.connect(Socket.java:469)
at java.net.Socket.<init>(Socket.java:366)
at java.net.Socket.<init>(Socket.java:209)
at com.mysql.jdbc.StandardSocketFactory.connect(Stand ardSocketFactory.java:253)
at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:280)
at com.mysql.jdbc.ConnectionImpl.createNewIO(Connecti onImpl.java:2177)
... 12 more

The questions is why would I get 'java.net.NoRouteToHostException: No route to host' exception. Are the first two master DBs in some way a gateway to the slave.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On