config: Document batching fields
This commit is contained in:
parent
f5409845b5
commit
d90ab2b81f
@ -84,16 +84,24 @@ type SealingConfig struct {
|
|||||||
|
|
||||||
AlwaysKeepUnsealedCopy bool
|
AlwaysKeepUnsealedCopy bool
|
||||||
|
|
||||||
|
// enable / disable precommit batching (takes effect after nv13)
|
||||||
BatchPreCommits bool
|
BatchPreCommits bool
|
||||||
|
// maximum precommit batch size - batches will be sent immediately above this size
|
||||||
MaxPreCommitBatch int
|
MaxPreCommitBatch int
|
||||||
MinPreCommitBatch int
|
MinPreCommitBatch int
|
||||||
|
// how long to wait before submitting a batch after crossing the minimum batch size
|
||||||
PreCommitBatchWait Duration
|
PreCommitBatchWait Duration
|
||||||
|
// time buffer for forceful batch submission before sectors in batch would start expiring
|
||||||
PreCommitBatchSlack Duration
|
PreCommitBatchSlack Duration
|
||||||
|
|
||||||
|
// enable / disable commit aggregation (takes effect after nv13)
|
||||||
AggregateCommits bool
|
AggregateCommits bool
|
||||||
|
// maximum batched commit size - batches will be sent immediately above this size
|
||||||
MinCommitBatch int
|
MinCommitBatch int
|
||||||
MaxCommitBatch int
|
MaxCommitBatch int
|
||||||
|
// how long to wait before submitting a batch after crossing the minimum batch size
|
||||||
CommitBatchWait Duration
|
CommitBatchWait Duration
|
||||||
|
// time buffer for forceful batch submission before sectors in batch would start expiring
|
||||||
CommitBatchSlack Duration
|
CommitBatchSlack Duration
|
||||||
|
|
||||||
TerminateBatchMax uint64
|
TerminateBatchMax uint64
|
||||||
|
Loading…
Reference in New Issue
Block a user