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

Bump metadata cache back down #102

Merged
merged 1 commit into from
Aug 23, 2019
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class LookupMetadata {
private static final Logger log = org.slf4j.LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());

// TODO make MAX_BISECT_KEY_CACHE_DEPTH configurable via the FileStoreBuilder
private static final int MAX_BISECT_KEY_CACHE_DEPTH = 13; // Size == 16_384
private static final int MAX_BISECT_KEY_CACHE_DEPTH = 11; // Size == 4_096g
private static final int MAX_TREE_NODES = treeSize(MAX_BISECT_KEY_CACHE_DEPTH);
private final LookupKey[] bisectKeys = new LookupKey[MAX_TREE_NODES];

Expand Down