You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libs/host/Configuration/Options.cs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -212,6 +212,9 @@ internal sealed class Options : ICloneable
212
212
[Option("aof-replay-task-count",Required=false,HelpText="Number of replay tasks per physical sublog at the replica.")]
213
213
publicintAofReplayTaskCount{get;set;}
214
214
215
+
[Option("aof-replay-max-drift",Required=false,HelpText="Maximum allowed drift in key sequence numbers between physical sublog replay drivers. When a driver is ahead of the slowest peer by more than this value, it yields. Only effective when aof-physical-sublog-count > 1. -1 = disabled.")]
216
+
publiclongAofReplayMaxDrift{get;set;}
217
+
215
218
[IntRangeValidation(0,int.MaxValue)]
216
219
[Option("aof-tail-witness-freq",Required=false,HelpText="Polling frequency of the background task responsible for moving time ahead for all physical sublogs (Used only with physical sublog value >1).")]
217
220
publicintAofTailWitnessFreqMs{get;set;}
@@ -859,6 +862,7 @@ endpoint is IPEndPoint listenEp && clusterAnnounceEndpoint[0] is IPEndPoint anno
0 commit comments