Skip to content

Commit

Permalink
Scanning commit roots in steps to limit number of logs fetched to mem…
Browse files Browse the repository at this point in the history
…ory.
  • Loading branch information
mateusz-sekara committed Nov 14, 2023
1 parent 05e1bcd commit bc09bfc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ const (
MaxExecutionReportLength = 250_000

// MaxDataLenPerBatch limits the total length of msg data that can be in a batch.
MaxDataLenPerBatch = 60_000
MaxDataLenPerBatch = 60_000
// MessagesIterationStep limits number of messages fetched to memory at once when iterating through unexpired CommitRoots
MessagesIterationStep = 800
)

Expand Down

0 comments on commit bc09bfc

Please sign in to comment.