Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

d_lru: smaller limit for CodeDomain #12990

Merged
merged 8 commits into from
Dec 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
save
  • Loading branch information
AskAlexSharov committed Dec 4, 2024
commit ebe29cea992828dc800e4534f94821e0faa9c35d
2 changes: 2 additions & 0 deletions erigon-lib/state/aggregator.go
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,8 @@ func (a *Aggregator) SetMergeWorkers(i int) { a.mergeWorkers = i }
func (a *Aggregator) SetCompressWorkers(i int) {
for _, d := range a.d {
d.compressCfg.Workers = i
d.History.compressorCfg.Workers = i
d.History.InvertedIndex.compressorCfg.Workers = i
}
for _, ii := range a.iis {
ii.compressorCfg.Workers = i
Expand Down
Loading