mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.0' into cassandra-4.1
* cassandra-4.0: Add NativeTransportMaxConcurrentConnectionsPerIp to StorageProxyMBean
This commit is contained in:
commit
c9f8d276c2
|
|
@ -5,6 +5,7 @@
|
||||||
* IntrusiveStack.accumulate is not accumulating correctly (CASSANDRA-20670)
|
* IntrusiveStack.accumulate is not accumulating correctly (CASSANDRA-20670)
|
||||||
* Add nodetool get/setguardrailsconfig commands (CASSANDRA-19552)
|
* Add nodetool get/setguardrailsconfig commands (CASSANDRA-19552)
|
||||||
Merged from 4.0:
|
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)
|
* 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)
|
* Ensure prepared_statement INSERT timestamp precedes eviction DELETE (CASSANDRA-19703)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,9 @@ public interface StorageProxyMBean
|
||||||
public void setNativeTransportMaxConcurrentConnections(Long nativeTransportMaxConcurrentConnections);
|
public void setNativeTransportMaxConcurrentConnections(Long nativeTransportMaxConcurrentConnections);
|
||||||
public Long getNativeTransportMaxConcurrentConnections();
|
public Long getNativeTransportMaxConcurrentConnections();
|
||||||
|
|
||||||
|
public void setNativeTransportMaxConcurrentConnectionsPerIp(Long nativeTransportMaxConcurrentConnections);
|
||||||
|
public Long getNativeTransportMaxConcurrentConnectionsPerIp();
|
||||||
|
|
||||||
public void reloadTriggerClasses();
|
public void reloadTriggerClasses();
|
||||||
|
|
||||||
public long getReadRepairAttempted();
|
public long getReadRepairAttempted();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue