-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
116332: go.mod: bump Pebble to e0f2ccd5c5bc r=nicktrav a=nicktrav ``` e0f2ccd5 metamorphic: increase probability of non-move multilevel compactions 5fab149e db: add multilevel compaction heuristic to OPTIONS file 556b4e0e sstable: update fixtures to TableFormatPebblev1 d5edae67 sstable: replace make-table.cc cc3088ce sstable: refactor test fixtures e1a5bbb0 sstable: remove h.ldb da33ae17 metamorphic: Disable virtual sstables for TestMeta. 0a72dbac Revert "Revert "metamorphic: don't no-op if only range keys are being replicated"" 3d309dfc Revert "Revert "metamorphic: generate IngestAndExcise op on prefix keys"" 635ec1b2 Revert "Revert "metamorphic: add IngestAndExcise, make EFOS determinitic"" d775d162 metamorphic: copy shared storage contents when saving data e6e58e8e tool: update corrupted.sst cb9640d1 tool: update find-mixed sst 1619a6ab tool: regenerate testdata/mixed a286f0f5 tool: regenerate find-db b048054b tool: regenerate out-of-order.sst ``` Release note: None. Epic: None. 116354: sql/catalog: remove egregious allocation r=fqazi a=ajwerner We were shoving a struct into an interface that only had one implementation -- not even testing was using it. I happened to be looking at a cockroach profile for other reasons and I noticed this. There's some other low hanging fruit, but none as low as this. ``` name old time/op new time/op delta KV/Scan/SQL/rows=1-3 179µs ± 6% 178µs ± 9% ~ (p=0.518 n=25+30) name old alloc/op new alloc/op delta KV/Scan/SQL/rows=1-3 30.9kB ± 2% 30.7kB ± 1% -0.40% (p=0.028 n=28+29) name old allocs/op new allocs/op delta KV/Scan/SQL/rows=1-3 357 ± 3% 351 ± 2% -1.78% (p=0.000 n=30+27) ``` Epic: none Release note: None Co-authored-by: Nick Travers <[email protected]> Co-authored-by: Andrew Werner <[email protected]>
- Loading branch information
Showing
5 changed files
with
16 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1613,10 +1613,10 @@ def go_deps(): | |
patches = [ | ||
"@com_github_cockroachdb_cockroach//build/patches:com_github_cockroachdb_pebble.patch", | ||
], | ||
sha256 = "936fad6922f386f5ade458fa862f4b3301d68dc8f81e63f08ac400c99f7c5bc1", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20231211223132-9848bcdb0fe9", | ||
sha256 = "0a5676d2dddeb3e1a3cfe0467fa58471aaf3ff97b59588d8b8b12a3e125594f4", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20231213142202-e0f2ccd5c5bc", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20231211223132-9848bcdb0fe9.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20231213142202-e0f2ccd5c5bc.zip", | ||
], | ||
) | ||
go_repository( | ||
|
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