@@ -94,6 +94,13 @@ The Reaper service specific configuration values are:
94
94
Intensity 0.75 means that 25% of the total time is used sleeping and 75% running.
95
95
This value can also be overwritten per repair run when invoking repairs.
96
96
97
+ * incrementalRepair:
98
+
99
+ Incremental reaper is a boolean value (true | false) which defines if you want to exercise the incremental
100
+ repair logic. Note that this is only supported with the PARALLEL repairParallelism setting.
101
+ For more details in incremental repair, please refer to the following article
102
+ http://www.datastax.com/dev/blog/more-efficient-repairs
103
+
97
104
* repairRunThreadCount:
98
105
99
106
The amount of threads to use for handling the Reaper tasks. Have this big enough not to cause
@@ -196,6 +203,7 @@ Source code for all the REST resources can be found from package com.spotify.rea
196
203
* * segmentCount* : Defines the amount of segments to create for repair run. (Optional)
197
204
* * repairParallelism* : Defines the used repair parallelism for repair run. (Optional)
198
205
* * intensity* : Defines the repair intensity for repair run. (Optional)
206
+ * * incrementalRepair* : Defines if incremental repair should be done. [ True/False] (Optional)
199
207
200
208
* PUT /repair_run/{id}
201
209
* Expected query parameters:
@@ -231,6 +239,7 @@ Source code for all the REST resources can be found from package com.spotify.rea
231
239
* * segmentCount* : Defines the amount of segments to create for scheduled repair runs. (Optional)
232
240
* * repairParallelism* : Defines the used repair parallelism for scheduled repair runs. (Optional)
233
241
* * intensity* : Defines the repair intensity for scheduled repair runs. (Optional)
242
+ * * incrementalRepair* : Defines if incremental repair should be done. [ True/False] (Optional)
234
243
* * scheduleDaysBetween* : Defines the amount of days to wait between scheduling new repairs.
235
244
For example, use value 7 for weekly schedule.
236
245
* * scheduleTriggerTime* : Defines the time for first scheduled trigger for the run.
0 commit comments