Skip to content

Commit 411187f

Browse files
committed
Add NativeTransportMaxConcurrentConnectionsPerIp to StorageProxyMBean
Adds setNativeTransportMaxConcurrentConnectionsPerIp and getNativeTransportMaxConcurrentConnectionsPerIp to StorageProxyMBean so these methods can be used from JMX like the *NativeTransportMaxConcurrentConnections methods. patch by Andy Tolbert; reviewed by Chris Lohfink for CASSANDRA-20642
1 parent 591ad81 commit 411187f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
4.0.19
2+
* Add NativeTransportMaxConcurrentConnectionsPerIp to StorageProxyMBean (CASSANDRA-20642)
23
* Make secondary index implementations notified about rows in fully expired SSTables in compaction (CASSANDRA-20829)
34
* Ensure prepared_statement INSERT timestamp precedes eviction DELETE (CASSANDRA-19703)
45
* Gossip doesn't converge due to race condition when updating EndpointStates multiple fields (CASSANDRA-20659)

src/java/org/apache/cassandra/service/StorageProxyMBean.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ public interface StorageProxyMBean
5454
public void setNativeTransportMaxConcurrentConnections(Long nativeTransportMaxConcurrentConnections);
5555
public Long getNativeTransportMaxConcurrentConnections();
5656

57+
public void setNativeTransportMaxConcurrentConnectionsPerIp(Long nativeTransportMaxConcurrentConnections);
58+
public Long getNativeTransportMaxConcurrentConnectionsPerIp();
59+
5760
public void reloadTriggerClasses();
5861

5962
public long getReadRepairAttempted();

0 commit comments

Comments
 (0)