Skip to content

Commit

Permalink
change the default to 2GB (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
jingweicb committed Sep 19, 2022
1 parent 7712c7d commit 2fa41fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/database/badger_database.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ const (
// PerformanceLogValueSize is 256 MB.
PerformanceLogValueSize = 256 << 20

// AllInMemoryTableSize is 3072 MB.
AllInMemoryTableSize = 3072 << 20
// AllInMemoryTableSize is 2048 MB.
AllInMemoryTableSize = 2048 << 20

// PerformanceLogValueSize is 512 MB.
AllInMemoryLogValueSize = 512 << 20
Expand Down

0 comments on commit 2fa41fd

Please sign in to comment.