We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc0ddaf commit 0e3012fCopy full SHA for 0e3012f
src/Database/LSMTree/Internal/Config.hs
@@ -262,7 +262,10 @@ bloomFilterAllocForLevel conf (LevelNo l) =
262
(fromIntegralChecked n)
263
(fromIntegralChecked sr)
264
levelCount
265
- in case allocPerLevel !? (l - 1) of
+ in -- TODO: monkey-style allocation does not currently work as
266
+ -- expected, so it is disabled for now.
267
+ error "boomFilterAllocForLevel: monkey allocation temporarily disabled" $
268
+ case allocPerLevel !? (l - 1) of
269
-- Default to an empty bloom filter in case the level wasn't
270
-- accounted for. See 'AllocMonkey'.
271
Nothing -> RunAllocMonkey 0
0 commit comments