In this blog post, we talk about how query connections are handled by the Tungsten Connector, especially read-only connections.
There are multiple ways to configure session handling in the Connector. The three main modes are Bridge, Proxy/Direct and Proxy/SmartScale.
In Bridge mode, the data source to connect to is chosen ONCE for the lifetime of the connection, which means that the selection of a different node will only happen if a NEW connection is opened through the Connector.
So if your application reuses its connections, all traffic sent through that session will continue to land on the selected read slave, i.e., when using connection pooling.
http://docs.continuent.com/tungsten-clustering-6.0/connector-bridgemode.html
The key difference is in how the slave latency checking is handled: …
[Read more]