Skip to content

Commit 509f111

Browse files
committed
add block size and index block size pebble options
1 parent d6428a6 commit 509f111

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ethdb/pebble/extraoptions.go

+2
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,7 @@ type ExtraOptionsExperimental struct {
2828
}
2929

3030
type ExtraLevelOptions struct {
31+
BlockSize int
32+
IndexBlockSize int
3133
TargetFileSize int64
3234
}

ethdb/pebble/pebble.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,12 @@ func New(file string, cache int, handles int, namespace string, readonly bool, e
204204
}
205205
} else {
206206
for _, level := range extraOptions.Levels {
207-
levels = append(levels, pebble.LevelOptions{TargetFileSize: level.TargetFileSize, FilterPolicy: bloom.FilterPolicy(10)})
207+
levels = append(levels, pebble.LevelOptions{
208+
BlockSize: level.BlockSize,
209+
IndexBlockSize: level.IndexBlockSize,
210+
TargetFileSize: level.TargetFileSize,
211+
FilterPolicy: bloom.FilterPolicy(10),
212+
})
208213
}
209214
}
210215
opt := &pebble.Options{

0 commit comments

Comments
 (0)