-
Notifications
You must be signed in to change notification settings - Fork 19
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
Cache rebuild #124
Merged
Merged
Cache rebuild #124
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1660087
Add recovery height to the pruning context, and mutate the recovery b…
9fdfe87
Add the bulk version of prubeToRebuild, to speed up recovery process
a20a2b6
Create new column family to store cache recovery state
c9b7c9e
Update hyper tree to use the new rebuildCacheBulk, and add new benchm…
0cefd3f
Update balloon to create the hyper tree using the new signature
ab11fe8
Remove old cache recovery code, as new one gives us more performance
d3edb67
Remove bulk suffix from functions names as it is the default
ef97667
Move cacheHeightLimit inside the Tree
f78962c
Fix bplus store reader with table prefix filtering
166dd2b
Add HyperCacheTable to Prefix translator
660fb4f
Fix hyper tree constructor call to use the correct api
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,6 @@ package hyper | |
import ( | ||
"testing" | ||
|
||
"github.com/bbva/qed/balloon/cache" | ||
"github.com/bbva/qed/hashing" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
@@ -57,7 +55,7 @@ func TestPruneToRebuild(t *testing.T) { | |
{innerHashCode, pos(0, 5)}, | ||
{getDefaultHashCode, pos(16, 4)}, | ||
{updateBatchNodeCode, pos(0, 4)}, | ||
{useHashCode, pos(0, 4)}, | ||
{getDefaultHashCode, pos(0, 4)}, | ||
}, | ||
}, | ||
{ | ||
|
@@ -97,7 +95,7 @@ func TestPruneToRebuild(t *testing.T) { | |
{innerHashCode, pos(0, 5)}, | ||
{getDefaultHashCode, pos(16, 4)}, | ||
{updateBatchNodeCode, pos(0, 4)}, | ||
{useHashCode, pos(0, 4)}, | ||
{getDefaultHashCode, pos(0, 4)}, | ||
}, | ||
}, | ||
} | ||
|
@@ -107,105 +105,12 @@ func TestPruneToRebuild(t *testing.T) { | |
|
||
for i, c := range testCases { | ||
loader := newFakeBatchLoader(c.cachedBatches, nil, cacheHeightLimit) | ||
prunedOps := pruneToRebuild(c.index, c.serializedBatch, cacheHeightLimit, loader).List() | ||
require.Truef(t, len(c.expectedOps) == len(prunedOps), "The size of the pruned ops should match the expected for test case %d", i) | ||
for j := 0; j < len(prunedOps); j++ { | ||
assert.Equalf(t, c.expectedOps[j].Code, prunedOps[j].Code, "The pruned operation's code should match for test case %d", i) | ||
assert.Equalf(t, c.expectedOps[j].Pos, prunedOps[j].Pos, "The pruned operation's position should match for test case %d", i) | ||
} | ||
} | ||
prunedOps := pruneToRebuild([][]byte{c.index}, cacheHeightLimit, loader).List() | ||
|
||
} | ||
|
||
func TestRebuildInterpretation(t *testing.T) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Recover this test |
||
|
||
testCases := []struct { | ||
index, serializedBatch []byte | ||
cachedBatches map[string][]byte | ||
expectedElements []*cachedElement | ||
}{ | ||
{ | ||
// insert index = 0 on empty cache | ||
index: []byte{0}, | ||
serializedBatch: []byte{ | ||
0xe0, 0x00, 0x00, 0x00, // bitmap: 11100000 00000000 00000000 00000000 | ||
0x00, 0x01, // iBatch 0 -> hash=0x00 (shortcut index=0) | ||
0x00, 0x02, // iBatch 1 -> key=0x00 | ||
0x00, 0x02, // iBatch 2 -> value=0x00 | ||
}, | ||
cachedBatches: map[string][]byte{}, | ||
expectedElements: []*cachedElement{ | ||
{ | ||
Pos: pos(0, 8), | ||
Value: []byte{ | ||
0xd1, 0x01, 0x00, 0x00, // bitmap: 11010001 00000001 00000000 00000000 | ||
0x00, 0x00, // iBatch 0 -> hash=0x00 | ||
0x00, 0x00, // iBatch 1 -> hash=0x00 | ||
0x00, 0x00, // iBatch 3 -> hash=0x00 | ||
0x00, 0x00, // iBatch 7 -> hash=0x00 | ||
0x00, 0x00, // iBatch 15 -> hash=0x00 | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
// insert index=1 on tree with 1 leaf (index: 0, value: 0) | ||
index: []byte{1}, | ||
serializedBatch: []byte{ | ||
0xd1, 0x01, 0x80, 0x00, // bitmap: 11010001 00000001 10000000 00000000 | ||
0x01, 0x00, // iBatch 0 -> hash=0x01 | ||
0x01, 0x00, // iBatch 1 -> hash=0x01 | ||
0x01, 0x00, // iBatch 3 -> hash=0x01 | ||
0x01, 0x00, // iBatch 7 -> hash=0x01 | ||
0x00, 0x00, // iBatch 15 -> hash=0x00 | ||
0x01, 0x00, // iBatch 16 -> hash=0x01 | ||
}, | ||
cachedBatches: map[string][]byte{ | ||
pos(0, 8).StringId(): []byte{ | ||
0xd1, 0x01, 0x00, 0x00, // bitmap: 11010001 00000001 00000000 00000000 | ||
0x00, 0x00, // iBatch 0 -> hash=0x00 | ||
0x00, 0x00, // iBatch 1 -> hash=0x00 | ||
0x00, 0x00, // iBatch 3 -> hash=0x00 | ||
0x00, 0x00, // iBatch 7 -> hash=0x00 | ||
0x00, 0x00, // iBatch 15 -> hash=0x00 | ||
}, | ||
}, | ||
expectedElements: []*cachedElement{ | ||
{ | ||
Pos: pos(0, 8), | ||
Value: []byte{ | ||
0xd1, 0x01, 0x00, 0x00, // bitmap: 11010001 00000001 00000000 00000000 | ||
0x01, 0x00, // iBatch 0 -> hash=0x01 | ||
0x01, 0x00, // iBatch 1 -> hash=0x01 | ||
0x01, 0x00, // iBatch 3 -> hash=0x01 | ||
0x01, 0x00, // iBatch 7 -> hash=0x01 | ||
0x01, 0x00, // iBatch 15 -> hash=0x01 | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
batchLevels := uint16(1) | ||
cacheHeightLimit := batchLevels * 4 | ||
defaultHashes := []hashing.Digest{{0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}} | ||
|
||
for i, c := range testCases { | ||
cache := cache.NewFakeCache([]byte{0x0}) | ||
batches := newFakeBatchLoader(c.cachedBatches, nil, cacheHeightLimit) | ||
|
||
ops := pruneToRebuild(c.index, c.serializedBatch, cacheHeightLimit, batches) | ||
ctx := &pruningContext{ | ||
Hasher: hashing.NewFakeXorHasher(), | ||
Cache: cache, | ||
DefaultHashes: defaultHashes, | ||
} | ||
|
||
ops.Pop().Interpret(ops, ctx) | ||
|
||
for _, e := range c.expectedElements { | ||
v, _ := cache.Get(e.Pos.Bytes()) | ||
assert.Equalf(t, e.Value, v, "The cached element %v should be cached in test case %d", e, i) | ||
require.Equal(t, len(c.expectedOps), len(prunedOps), "The size of the pruned ops should match the expected for test case %d", i) | ||
for j := 0; j < len(prunedOps); j++ { | ||
assert.Equalf(t, c.expectedOps[j].Code, prunedOps[j].Code, "The pruned operation's code should match for test case %d elem %d", i, j) | ||
assert.Equalf(t, c.expectedOps[j].Pos, prunedOps[j].Pos, "The pruned operation's position should match for test case %d elem %d", i, j) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider to include this in the pruner as a new mutateOp