Share native connection between LettuceConnections

to minimize socket usage

DATAREDIS-126
This commit is contained in:
Jennifer Hickey
2013-03-20 14:04:45 -07:00
parent f4f9f06356
commit 0a702bf4af
5 changed files with 674 additions and 280 deletions

View File

@@ -18,36 +18,58 @@ package org.springframework.data.redis.connection.lettuce;
import java.util.concurrent.TimeUnit;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.dao.DataAccessException;
import org.springframework.data.redis.connection.RedisConnection;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.util.Assert;
import com.lambdaworks.redis.RedisAsyncConnection;
import com.lambdaworks.redis.RedisClient;
import com.lambdaworks.redis.RedisException;
/**
* Connection factory creating <a href="http://github.com/wg/lettuce">Lettuce</a>-based connections.
*
* Connection factory creating <a
* href="http://github.com/wg/lettuce">Lettuce</a>-based connections.
* <p>
* This factory creates a new {@link LettuceConnection} on each call to
* {@link #getConnection()}. Multiple {@link LettuceConnection}s share a single
* thread-safe native connection.
*
* <p>
* The shared native connection is never closed by {@link LettuceConnection},
* therefore it is not validated by default on {@link #getConnection()}. Use
* {@link #setValidateConnection(boolean)} to change this behavior if necessary.
*
* @author Costin Leau
* @author Jennifer Hickey
*/
public class LettuceConnectionFactory implements InitializingBean, DisposableBean, RedisConnectionFactory {
public class LettuceConnectionFactory implements InitializingBean, DisposableBean,
RedisConnectionFactory {
private final Log log = LogFactory.getLog(getClass());
private String hostName = "localhost";
private int port = 6379;
private RedisClient client;
private long timeout = TimeUnit.MILLISECONDS.convert(60, TimeUnit.SECONDS);
private boolean validateConnection = false;
private RedisAsyncConnection<byte[], byte[]> connection;
private int dbIndex = 0;
/**
* Constructs a new <code>LettuceConnectionFactory</code> instance
* with default settings.
* Constructs a new <code>LettuceConnectionFactory</code> instance with
* default settings.
*/
public LettuceConnectionFactory() {
}
/**
* Constructs a new <code>LettuceConnectionFactory</code> instance
* with default settings.
* Constructs a new <code>LettuceConnectionFactory</code> instance with
* default settings.
*/
public LettuceConnectionFactory(String host, int port) {
this.hostName = host;
@@ -57,6 +79,8 @@ public class LettuceConnectionFactory implements InitializingBean, DisposableBea
public void afterPropertiesSet() {
client = new RedisClient(hostName, port);
client.setDefaultTimeout(timeout, TimeUnit.MILLISECONDS);
// open a single connection to be shared for non-blocking and non-tx ops
initConnection();
}
public void destroy() {
@@ -64,7 +88,15 @@ public class LettuceConnectionFactory implements InitializingBean, DisposableBea
}
public RedisConnection getConnection() {
return new LettuceConnection(client.connectAsync(LettuceUtils.CODEC), timeout, client);
if (validateConnection) {
try {
new com.lambdaworks.redis.RedisConnection<byte[], byte[]>(connection).ping();
} catch (RedisException e) {
log.warn("Validation of shared connection failed. Creating a new connection.");
initConnection();
}
}
return new LettuceConnection(connection, timeout, client);
}
public DataAccessException translateExceptionIfPossible(RuntimeException ex) {
@@ -83,7 +115,8 @@ public class LettuceConnectionFactory implements InitializingBean, DisposableBea
/**
* Sets the host.
*
* @param host the host to set
* @param host
* the host to set
*/
public void setHostName(String host) {
this.hostName = host;
@@ -101,7 +134,8 @@ public class LettuceConnectionFactory implements InitializingBean, DisposableBea
/**
* Sets the port.
*
* @param port the port to set
* @param port
* the port to set
*/
public void setPort(int port) {
this.port = port;
@@ -109,7 +143,7 @@ public class LettuceConnectionFactory implements InitializingBean, DisposableBea
/**
* Returns the connection timeout (in milliseconds).
*
*
* @return connection timeout
*/
public long getTimeout() {
@@ -118,10 +152,68 @@ public class LettuceConnectionFactory implements InitializingBean, DisposableBea
/**
* Sets the connection timeout (in milliseconds).
*
* @param timeout connection timeout
*
* @param timeout
* connection timeout
*/
public void setTimeout(long timeout) {
this.timeout = timeout;
}
/**
* Indicates if validation of the native Lettuce connection is enabled
*
* @return connection validation enabled
*/
public boolean getValidateConnection() {
return validateConnection;
}
/**
* Enables validation of the shared native Lettuce connection on calls to
* {@link #getConnection()}. A new connection will be created and used if
* validation fails.
* <p>
* Lettuce will automatically reconnect until close is called, which should
* never happen through {@link LettuceConnection}, therefore the default is
* false.
* <p>
* Setting this to true will result in a round-trip call to the server on
* each new connection, so this setting should only be used if there is code
* that is actively closing the native Lettuce connection.
*
* @param validateConnection
* enable connection validation
*/
public void setValidateConnection(boolean validateConnection) {
this.validateConnection = validateConnection;
}
/**
* Returns the index of the database.
*
* @return Returns the database index
*/
public int getDatabase() {
return dbIndex;
}
/**
* Sets the index of the database used by this connection factory. Default
* is 0.
*
* @param index
* database index
*/
public void setDatabase(int index) {
Assert.isTrue(index >= 0, "invalid DB index (a positive index required)");
this.dbIndex = index;
}
protected void initConnection() {
connection = client.connectAsync(LettuceUtils.CODEC);
if (dbIndex > 0) {
connection.select(dbIndex);
}
}
}