com.netflix.http4.ConnectionPoolCleaner Maven / Gradle / Ivy
/*
*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.netflix.http4;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import org.apache.http.conn.ClientConnectionManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.netflix.config.DynamicIntProperty;
import com.netflix.config.DynamicPropertyFactory;
/**
* Class that is responsible to cleanup connections based on a policy
* For e.g. evict all connections from the pool that have been idle for more than x msecs
* @author stonse
*
*/
public class ConnectionPoolCleaner {
private static final Logger logger = LoggerFactory.getLogger(ConnectionPoolCleaner.class);
String name = "default";
ClientConnectionManager connMgr;
ScheduledExecutorService scheduler;
private DynamicIntProperty connIdleEvictTimeMilliSeconds
= DynamicPropertyFactory.getInstance().getIntProperty("default.nfhttpclient.connIdleEvictTimeMilliSeconds",
NFHttpClientConstants.DEFAULT_CONNECTIONIDLE_TIME_IN_MSECS);
volatile boolean enableConnectionPoolCleanerTask = false;
long connectionCleanerTimerDelay = 10;
long connectionCleanerRepeatInterval = NFHttpClientConstants.DEFAULT_CONNECTION_IDLE_TIMERTASK_REPEAT_IN_MSECS;
private volatile ScheduledFuture> scheduledFuture;
public ConnectionPoolCleaner(String name, ClientConnectionManager connMgr, ScheduledExecutorService scheduler){
this.name = name;
this.connMgr = connMgr;
this.scheduler = scheduler;
}
public DynamicIntProperty getConnIdleEvictTimeMilliSeconds() {
return connIdleEvictTimeMilliSeconds;
}
public void setConnIdleEvictTimeMilliSeconds(
DynamicIntProperty connIdleEvictTimeMilliSeconds) {
this.connIdleEvictTimeMilliSeconds = connIdleEvictTimeMilliSeconds;
}
public boolean isEnableConnectionPoolCleanerTask() {
return enableConnectionPoolCleanerTask;
}
public void setEnableConnectionPoolCleanerTask(
boolean enableConnectionPoolCleanerTask) {
this.enableConnectionPoolCleanerTask = enableConnectionPoolCleanerTask;
}
public long getConnectionCleanerTimerDelay() {
return connectionCleanerTimerDelay;
}
public void setConnectionCleanerTimerDelay(long connectionCleanerTimerDelay) {
this.connectionCleanerTimerDelay = connectionCleanerTimerDelay;
}
public long getConnectionCleanerRepeatInterval() {
return connectionCleanerRepeatInterval;
}
public void setConnectionCleanerRepeatInterval(
long connectionCleanerRepeatInterval) {
this.connectionCleanerRepeatInterval = connectionCleanerRepeatInterval;
}
public void initTask(){
if (enableConnectionPoolCleanerTask) {
scheduledFuture = scheduler.scheduleWithFixedDelay(new Runnable() {
public void run() {
try {
if (enableConnectionPoolCleanerTask) {
logger.debug("Connection pool clean up started for client {}", name);
cleanupConnections();
} else if (scheduledFuture != null) {
scheduledFuture.cancel(true);
}
} catch (Throwable e) {
logger.error("Exception in ConnectionPoolCleanerThread",e);
}
}
}, connectionCleanerTimerDelay, connectionCleanerRepeatInterval, TimeUnit.MILLISECONDS);
logger.info("Initializing ConnectionPoolCleaner for NFHttpClient:" + name);
}
}
void cleanupConnections(){
connMgr.closeExpiredConnections();
connMgr.closeIdleConnections(connIdleEvictTimeMilliSeconds.get(), TimeUnit.MILLISECONDS);
}
public void shutdown() {
enableConnectionPoolCleanerTask = false;
if (scheduledFuture != null) {
scheduledFuture.cancel(true);
}
}
public String toString(){
StringBuilder sb = new StringBuilder();
sb.append("ConnectionPoolCleaner:" + name);
sb.append(", connIdleEvictTimeMilliSeconds:" + connIdleEvictTimeMilliSeconds.get());
sb.append(", connectionCleanerTimerDelay:" + connectionCleanerTimerDelay);
sb.append(", connectionCleanerRepeatInterval:" + connectionCleanerRepeatInterval);
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy