Skip to content

Commit 0e9ad8c

Browse files
committed
Introduce an option for tuning SO_KEEPALIVE, close AsyncHttpClient#1702
Motivation: We don't set SO_KEEPALIVE on the socket. Modification: Enable SO_KEEPALIVE by default and introduce org.asynchttpclient.soKeepAlive config option to disable it. Result: SO_KEEPALIVE supported
1 parent 558d2c4 commit 0e9ad8c

File tree

6 files changed

+30
-0
lines changed

6 files changed

+30
-0
lines changed

client/src/main/java/org/asynchttpclient/AsyncHttpClientConfig.java

+2
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,8 @@ public interface AsyncHttpClientConfig {
318318

319319
boolean isSoReuseAddress();
320320

321+
boolean isSoKeepAlive();
322+
321323
int getSoLinger();
322324

323325
int getSoSndBuf();

client/src/main/java/org/asynchttpclient/DefaultAsyncHttpClientConfig.java

+16
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ public class DefaultAsyncHttpClientConfig implements AsyncHttpClientConfig {
123123
private final ByteBufAllocator allocator;
124124
private final boolean tcpNoDelay;
125125
private final boolean soReuseAddress;
126+
private final boolean soKeepAlive;
126127
private final int soLinger;
127128
private final int soSndBuf;
128129
private final int soRcvBuf;
@@ -193,6 +194,7 @@ private DefaultAsyncHttpClientConfig(// http
193194
// tuning
194195
boolean tcpNoDelay,
195196
boolean soReuseAddress,
197+
boolean soKeepAlive,
196198
int soLinger,
197199
int soSndBuf,
198200
int soRcvBuf,
@@ -281,6 +283,7 @@ private DefaultAsyncHttpClientConfig(// http
281283
// tuning
282284
this.tcpNoDelay = tcpNoDelay;
283285
this.soReuseAddress = soReuseAddress;
286+
this.soKeepAlive = soKeepAlive;
284287
this.soLinger = soLinger;
285288
this.soSndBuf = soSndBuf;
286289
this.soRcvBuf = soRcvBuf;
@@ -560,6 +563,11 @@ public boolean isSoReuseAddress() {
560563
return soReuseAddress;
561564
}
562565

566+
@Override
567+
public boolean isSoKeepAlive() {
568+
return soKeepAlive;
569+
}
570+
563571
@Override
564572
public int getSoLinger() {
565573
return soLinger;
@@ -726,6 +734,7 @@ public static class Builder {
726734
// tuning
727735
private boolean tcpNoDelay = defaultTcpNoDelay();
728736
private boolean soReuseAddress = defaultSoReuseAddress();
737+
private boolean soKeepAlive = defaultSoKeepAlive();
729738
private int soLinger = defaultSoLinger();
730739
private int soSndBuf = defaultSoSndBuf();
731740
private int soRcvBuf = defaultSoRcvBuf();
@@ -808,6 +817,7 @@ public Builder(AsyncHttpClientConfig config) {
808817
// tuning
809818
tcpNoDelay = config.isTcpNoDelay();
810819
soReuseAddress = config.isSoReuseAddress();
820+
soKeepAlive = config.isSoKeepAlive();
811821
soLinger = config.getSoLinger();
812822
soSndBuf = config.getSoSndBuf();
813823
soRcvBuf = config.getSoRcvBuf();
@@ -1127,6 +1137,11 @@ public Builder setSoReuseAddress(boolean soReuseAddress) {
11271137
return this;
11281138
}
11291139

1140+
public Builder setSoKeepAlive(boolean soKeepAlive) {
1141+
this.soKeepAlive = soKeepAlive;
1142+
return this;
1143+
}
1144+
11301145
public Builder setSoLinger(int soLinger) {
11311146
this.soLinger = soLinger;
11321147
return this;
@@ -1287,6 +1302,7 @@ public DefaultAsyncHttpClientConfig build() {
12871302
cookieStore,
12881303
tcpNoDelay,
12891304
soReuseAddress,
1305+
soKeepAlive,
12901306
soLinger,
12911307
soSndBuf,
12921308
soRcvBuf,

client/src/main/java/org/asynchttpclient/config/AsyncHttpClientConfigDefaults.java

+5
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public final class AsyncHttpClientConfigDefaults {
5353
public static final String SSL_SESSION_TIMEOUT_CONFIG = "sslSessionTimeout";
5454
public static final String TCP_NO_DELAY_CONFIG = "tcpNoDelay";
5555
public static final String SO_REUSE_ADDRESS_CONFIG = "soReuseAddress";
56+
public static final String SO_KEEP_ALIVE_CONFIG = "soKeepAlive";
5657
public static final String SO_LINGER_CONFIG = "soLinger";
5758
public static final String SO_SND_BUF_CONFIG = "soSndBuf";
5859
public static final String SO_RCV_BUF_CONFIG = "soRcvBuf";
@@ -222,6 +223,10 @@ public static boolean defaultSoReuseAddress() {
222223
return AsyncHttpClientConfigHelper.getAsyncHttpClientConfig().getBoolean(ASYNC_CLIENT_CONFIG_ROOT + SO_REUSE_ADDRESS_CONFIG);
223224
}
224225

226+
public static boolean defaultSoKeepAlive() {
227+
return AsyncHttpClientConfigHelper.getAsyncHttpClientConfig().getBoolean(ASYNC_CLIENT_CONFIG_ROOT + SO_KEEP_ALIVE_CONFIG);
228+
}
229+
225230
public static int defaultSoLinger() {
226231
return AsyncHttpClientConfigHelper.getAsyncHttpClientConfig().getInt(ASYNC_CLIENT_CONFIG_ROOT + SO_LINGER_CONFIG);
227232
}

client/src/main/java/org/asynchttpclient/netty/channel/ChannelManager.java

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ private Bootstrap newBootstrap(ChannelFactory<? extends Channel> channelFactory,
162162
.option(ChannelOption.ALLOCATOR, config.getAllocator() != null ? config.getAllocator() : ByteBufAllocator.DEFAULT)
163163
.option(ChannelOption.TCP_NODELAY, config.isTcpNoDelay())
164164
.option(ChannelOption.SO_REUSEADDR, config.isSoReuseAddress())
165+
.option(ChannelOption.SO_KEEPALIVE, config.isSoKeepAlive())
165166
.option(ChannelOption.AUTO_CLOSE, false);
166167

167168
if (config.getConnectTimeout() > 0) {

client/src/main/resources/org/asynchttpclient/config/ahc-default.properties

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ org.asynchttpclient.sslSessionCacheSize=0
3232
org.asynchttpclient.sslSessionTimeout=0
3333
org.asynchttpclient.tcpNoDelay=true
3434
org.asynchttpclient.soReuseAddress=false
35+
org.asynchttpclient.soKeepAlive=true
3536
org.asynchttpclient.soLinger=-1
3637
org.asynchttpclient.soSndBuf=-1
3738
org.asynchttpclient.soRcvBuf=-1

extras/typesafeconfig/src/main/java/org/asynchttpclient/extras/typesafeconfig/AsyncHttpClientTypesafeConfig.java

+5
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,11 @@ public boolean isSoReuseAddress() {
369369
return getBooleanOpt(SO_REUSE_ADDRESS_CONFIG).orElse(defaultSoReuseAddress());
370370
}
371371

372+
@Override
373+
public boolean isSoKeepAlive() {
374+
return getBooleanOpt(SO_KEEP_ALIVE_CONFIG).orElse(defaultSoKeepAlive());
375+
}
376+
372377
@Override
373378
public int getSoLinger() {
374379
return getIntegerOpt(SO_LINGER_CONFIG).orElse(defaultSoLinger());

0 commit comments

Comments
 (0)