-
Notifications
You must be signed in to change notification settings - Fork 465
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
db: amend BenchmarkRangeDelIterate #1071
db: amend BenchmarkRangeDelIterate #1071
Conversation
b20c6f7
to
007862b
Compare
Amend BenchmarkRangeDelIterate to include benchmarks that iterate through keys that are deleted by a range tombstone within the same SSTable. See cockroachdb#1070. ``` goos: linux goarch: amd64 pkg: github.com/cockroachdb/pebble BenchmarkRangeDelIterate BenchmarkRangeDelIterate/entries=10 BenchmarkRangeDelIterate/entries=10/deleted=10 BenchmarkRangeDelIterate/entries=10/deleted=10/snapshotAndCompact=false BenchmarkRangeDelIterate/entries=10/deleted=10/snapshotAndCompact=false-24 1868349 636 ns/op BenchmarkRangeDelIterate/entries=10/deleted=10/snapshotAndCompact=true BenchmarkRangeDelIterate/entries=10/deleted=10/snapshotAndCompact=true-24 403632 2945 ns/op BenchmarkRangeDelIterate/entries=10/deleted=9 BenchmarkRangeDelIterate/entries=10/deleted=9/snapshotAndCompact=false BenchmarkRangeDelIterate/entries=10/deleted=9/snapshotAndCompact=false-24 647324 1855 ns/op BenchmarkRangeDelIterate/entries=10/deleted=9/snapshotAndCompact=true BenchmarkRangeDelIterate/entries=10/deleted=9/snapshotAndCompact=true-24 425908 2793 ns/op BenchmarkRangeDelIterate/entries=1000 BenchmarkRangeDelIterate/entries=1000/deleted=1000 BenchmarkRangeDelIterate/entries=1000/deleted=1000/snapshotAndCompact=false BenchmarkRangeDelIterate/entries=1000/deleted=1000/snapshotAndCompact=false-24 1874809 642 ns/op BenchmarkRangeDelIterate/entries=1000/deleted=1000/snapshotAndCompact=true BenchmarkRangeDelIterate/entries=1000/deleted=1000/snapshotAndCompact=true-24 10000 106763 ns/op BenchmarkRangeDelIterate/entries=1000/deleted=999 BenchmarkRangeDelIterate/entries=1000/deleted=999/snapshotAndCompact=false BenchmarkRangeDelIterate/entries=1000/deleted=999/snapshotAndCompact=false-24 613291 1895 ns/op BenchmarkRangeDelIterate/entries=1000/deleted=999/snapshotAndCompact=true BenchmarkRangeDelIterate/entries=1000/deleted=999/snapshotAndCompact=true-24 10000 106169 ns/op BenchmarkRangeDelIterate/entries=100000 BenchmarkRangeDelIterate/entries=100000/deleted=100000 BenchmarkRangeDelIterate/entries=100000/deleted=100000/snapshotAndCompact=false BenchmarkRangeDelIterate/entries=100000/deleted=100000/snapshotAndCompact=false-24 1865816 640 ns/op BenchmarkRangeDelIterate/entries=100000/deleted=100000/snapshotAndCompact=true BenchmarkRangeDelIterate/entries=100000/deleted=100000/snapshotAndCompact=true-24 106 10928184 ns/op BenchmarkRangeDelIterate/entries=100000/deleted=99999 BenchmarkRangeDelIterate/entries=100000/deleted=99999/snapshotAndCompact=false BenchmarkRangeDelIterate/entries=100000/deleted=99999/snapshotAndCompact=false-24 614889 1937 ns/op BenchmarkRangeDelIterate/entries=100000/deleted=99999/snapshotAndCompact=true BenchmarkRangeDelIterate/entries=100000/deleted=99999/snapshotAndCompact=true-24 105 10958571 ns/op ```
007862b
to
82e23c9
Compare
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.
Reviewed 1 of 1 files at r1.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @petermattis and @sumeerbhola)
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.
TFTR!
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @petermattis and @sumeerbhola)
Amend BenchmarkRangeDelIterate to include benchmarks that iterate
through keys that are deleted by a range tombstone within the same
SSTable.
See #1070.