This is an automated email from the ASF dual-hosted git repository.
brandonwilliams pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git
The following commit(s) were added to refs/heads/trunk by this push:
new e19d27e4 largecolumn_test.py - configure
native_transport_max_request_data_in_flight and
native_transport_max_request_data_in_flight_per_ip for 4.1 and later
e19d27e4 is described below
commit e19d27e4ce7011bd26f18c97b1796cc38555601a
Author: Dmitry Konstantinov <[email protected]>
AuthorDate: Wed Oct 2 23:31:00 2024 +0100
largecolumn_test.py - configure native_transport_max_request_data_in_flight
and native_transport_max_request_data_in_flight_per_ip for 4.1 and later
Patch by Dmitry Konstantinov; reviewed by brandonwilliams and
smiklosovic for CASSANDRA-19702
---
largecolumn_test.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/largecolumn_test.py b/largecolumn_test.py
index e7e58077..bbff10f8 100644
--- a/largecolumn_test.py
+++ b/largecolumn_test.py
@@ -48,6 +48,9 @@ class TestLargeColumn(Tester):
configuration = {'commitlog_segment_size_in_mb': 128,
'internode_compression': 'none'}
if cluster.version() >= '4.0':
configuration['internode_max_message_size_in_bytes'] = 128 * 1024
* 1024
+ if cluster.version() >= '4.1':
+ configuration['native_transport_max_request_data_in_flight'] =
'64MiB'
+
configuration['native_transport_max_request_data_in_flight_per_ip'] = '64MiB'
cluster.set_configuration_options(configuration)
# Have Netty allocate memory on heap so it is clear if memory used for
large columns is related to intracluster messaging
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]