-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mvcc: Clone the key index BTree to traverse for compaction and lock t…
…he original tree on each KeyItem operation, so as to not hold the lock for a long time. This allows read/write throughput by not blocking when the index tree is large (greater than 1M entries).
- Loading branch information
1 parent
46e19d2
commit eb74545
Showing
3 changed files
with
45 additions
and
27 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package mvcc | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func BenchmarkIndexCompact1(b *testing.B) { benchmarkIndexCompact(b, 1) } | ||
func BenchmarkIndexCompact100(b *testing.B) { benchmarkIndexCompact(b, 100) } | ||
func BenchmarkIndexCompact10000(b *testing.B) { benchmarkIndexCompact(b, 10000) } | ||
func BenchmarkIndexCompact100000(b *testing.B) { benchmarkIndexCompact(b, 100000) } | ||
func BenchmarkIndexCompact1000000(b *testing.B) { benchmarkIndexCompact(b, 1000000) } | ||
|
||
func benchmarkIndexCompact(b *testing.B, size int) { | ||
kvindex := newTreeIndex() | ||
|
||
bytesN := 64 | ||
keys := createBytesSlice(bytesN, size) | ||
for i := 1; i < size; i++ { | ||
kvindex.Put(keys[i], revision {main: int64(i), sub: int64(i)}) | ||
} | ||
b.ResetTimer() | ||
for i := 1; i < b.N; i++ { | ||
kvindex.Compact(int64(i)) | ||
} | ||
} |
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