dcapwell commented on code in PR #2660:
URL: https://github.com/apache/cassandra/pull/2660#discussion_r1327763394


##########
conf/cassandra.yaml:
##########
@@ -723,6 +723,24 @@ memtable_allocation_type: heap_buffers
 # Min unit: MiB
 # repair_session_space:
 
+# Configure the retries for each of the repair messages that support it.
+#
+# For more details see https://issues.apache.org/jira/browse/CASSANDRA-18816
+#
+# repair:
+#   retries:
+#     type: Exponential
+#     max_attempts: 3
+#     base_sleep_time: 200ms
+#     max_sleep_time: 1s
+#     verbs:
+#       # Increase the timeout of validation responses due to them containing 
the merkle tree
+#       VALIDATION_RSP:

Review Comment:
   I went with the following example
   
   ```
   repair:
     retries:
       type: Exponential
       max_attempts: 3
       base_sleep_time: 200ms
       max_sleep_time: 1s
       # Increase the timeout of validation responses due to them containing 
the merkle tree
       merkle_tree_response:
         base_sleep_time: 30s
         max_sleep_time: 1m
   ```



##########
conf/cassandra.yaml:
##########
@@ -723,6 +723,24 @@ memtable_allocation_type: heap_buffers
 # Min unit: MiB
 # repair_session_space:
 
+# Configure the retries for each of the repair messages that support it.
+#
+# For more details see https://issues.apache.org/jira/browse/CASSANDRA-18816
+#
+# repair:
+#   retries:
+#     type: Exponential
+#     max_attempts: 3
+#     base_sleep_time: 200ms
+#     max_sleep_time: 1s
+#     verbs:
+#       # Increase the timeout of validation responses due to them containing 
the merkle tree
+#       VALIDATION_RSP:

Review Comment:
   I went with the following example
   
   ```
   repair:
     retries:
       max_attempts: 3
       base_sleep_time: 200ms
       max_sleep_time: 1s
       # Increase the timeout of validation responses due to them containing 
the merkle tree
       merkle_tree_response:
         base_sleep_time: 30s
         max_sleep_time: 1m
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to