This is an automated email from the ASF dual-hosted git repository.

marcuse 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 0accec41 Bump max_mutation_size_in_kb due to system schema getting 
larger than 20kb after adding top partitions table
0accec41 is described below

commit 0accec41ae71fc8b381e4a21bdc5d161a7acd650
Author: Marcus Eriksson <[email protected]>
AuthorDate: Wed Apr 27 16:18:57 2022 +0200

    Bump max_mutation_size_in_kb due to system schema getting larger than 20kb 
after adding top partitions table
    
    Patch by marcuse; reviewed by Berenguer Blasi for CASSANDRA-16310
---
 materialized_views_test.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/materialized_views_test.py b/materialized_views_test.py
index b7e8bd6f..8fcecba6 100644
--- a/materialized_views_test.py
+++ b/materialized_views_test.py
@@ -712,7 +712,7 @@ class TestMaterializedViews(Tester):
                     assert_one(session, "SELECT * FROM t_by_v WHERE id = {} 
and v = {}".format(i, j), [j, i])
 
         node4 = new_node(self.cluster, data_center="dc1")
-        node4.set_configuration_options(values={'max_mutation_size_in_kb': 
20})  # CASSANDRA-11670
+        node4.set_configuration_options(values={'max_mutation_size_in_kb': 
25})  # CASSANDRA-11670
         logger.debug("Start join at {}".format(time.strftime("%H:%M:%S")))
         node4.start(wait_for_binary_proto=True, 
jvm_args=["-Dcassandra.migration_task_wait_in_seconds={}".format(MIGRATION_WAIT)])
 
@@ -765,7 +765,7 @@ class TestMaterializedViews(Tester):
                 assert_one(session, "SELECT * FROM t_by_v WHERE id = {} and v 
= {}".format(i, j), [j, i])
 
         node4 = new_node(self.cluster, data_center="dc1")
-        node4.set_configuration_options(values={'max_mutation_size_in_kb': 
20})  # CASSANDRA-11670
+        node4.set_configuration_options(values={'max_mutation_size_in_kb': 
25})  # CASSANDRA-11670
         logger.debug("Start join at {}".format(time.strftime("%H:%M:%S")))
         node4.start(wait_for_binary_proto=True, 
jvm_args=["-Dcassandra.migration_task_wait_in_seconds={}".format(MIGRATION_WAIT)])
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to