Merge branch 'cassandra-4.0' into cassandra-4.1

* cassandra-4.0:
  Add NativeTransportMaxConcurrentConnectionsPerIp to StorageProxyMBean
This commit is contained in:
Andy Tolbert 2025-08-20 17:48:53 -05:00
commit c9f8d276c2
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* IntrusiveStack.accumulate is not accumulating correctly (CASSANDRA-20670)
* Add nodetool get/setguardrailsconfig commands (CASSANDRA-19552)
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)
* Ensure prepared_statement INSERT timestamp precedes eviction DELETE (CASSANDRA-19703)

View File

@ -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();