mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.1' into cassandra-5.0
* cassandra-4.1: Add NativeTransportMaxConcurrentConnectionsPerIp to StorageProxyMBean
This commit is contained in:
commit
3199a958c3
|
|
@ -1,6 +1,7 @@
|
|||
5.0.6
|
||||
* Sort SSTable TOC entries for determinism (CASSANDRA-20494)
|
||||
Merged from 4.0:
|
||||
* Add NativeTransportMaxConcurrentConnectionsPerIp to StorageProxyMBean (CASSANDRA-20642)
|
||||
* Make secondary index implementations notified about rows in fully expired SSTables in compaction (CASSANDRA-20829)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -56,6 +56,9 @@ public interface StorageProxyMBean
|
|||
public void setNativeTransportMaxConcurrentConnections(Long nativeTransportMaxConcurrentConnections);
|
||||
public Long getNativeTransportMaxConcurrentConnections();
|
||||
|
||||
public void setNativeTransportMaxConcurrentConnectionsPerIp(Long nativeTransportMaxConcurrentConnections);
|
||||
public Long getNativeTransportMaxConcurrentConnectionsPerIp();
|
||||
|
||||
public void reloadTriggerClasses();
|
||||
|
||||
public long getReadRepairAttempted();
|
||||
|
|
|
|||
Loading…
Reference in New Issue