dcapwell commented on code in PR #2660: URL: https://github.com/apache/cassandra/pull/2660#discussion_r1327551930
########## 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: the only real verb that needs overrides is the validation/merkle_tre one, so your simplification makes sense. I mostly went down to per verb so you can opt-in/out of w/e is causing issues... if prepare was causing some issues for you but the rest were fine, felt it was nice not to disable all retries and just disable prepare (just using as an example) -- 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]

