Badger getting slower as table gets bigger

As my table grows in size it went from an average of 300µs to the current 4.88457ms (data folder is 1.1T) and growing.

My use case:
I get and set data on millions of transactions per second.

Badger Version: v3.2103.2

	badgerOptions := badger.DefaultOptions("/data").
		WithCompactL0OnClose(true).
		WithNumCompactors(10).
		WithMaxLevels(8).
		WithNumGoroutines(100)
1 Like