forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…achdb#116875 cockroachdb#116883 116295: allocator: safe format allocator log messages r=andrewbaptist a=kvoli See individual commit messages. Note stringer tests are added in earlier PRs in order to assert against regressions. Resolves: cockroachdb#102948 Release note: None 116644: kvclient: remove RPCContext from DistSender r=yuzefovich a=andrewbaptist RPCContext is unnecessary in DistSender. The only two things that are needed are the LatencyFunc, which is extracted from the RemoteClocks, and the Stopper which should have been passed in directly. This change makes DistSender a tiny bit more easily testable. Epic: none Release note: None 116866: go.mod: bump Pebble to bfc74496212f r=dt a=dt ``` cockroachdb/pebble@bfc74496 define FormatSyntheticPrefixes version cockroachdb/pebble@a27878fb ingest,manifest,sstable: connect prefix rules in ingest to prefix replacing iterators cockroachdb/pebble@a452c0e5 manifest: add encoding of prefix rules to manifest entries cockroachdb/pebble@e7d75289 sstable: add prefixReplacingIterator cockroachdb/pebble@e40df58f sstable: add prefix arg to buildTestTableWithProvider cockroachdb/pebble@35cfce46 external_iterator: don't double-close Readers in case of err cockroachdb/pebble@69994ddb sstable: update comment about SINGLEDEL, foreign ssts and compactions cockroachdb/pebble@40d5f216 db: code comment about guaranteeing durability of initial state cockroachdb/pebble@5c5ad7ed keyspan: add Assert iterator cockroachdb/pebble@bbf7dc40 db: deprecate older format versions ``` Release note: none. Epic: none. 116875: allocatorimpl: check IO overload in should transfer lease r=andrewbaptist a=kvoli Previously, when the lease IO overload enforcement was set to shed and a store satisfied the IO overload criteria, it would not be guaranteed to have its leases enqueued into the replicate queue. Add an IO overload check in should transfer lease to ensure it does. Epic: none Release note: None 116883: application_api: skip more tests under race r=rail a=rickystewart Epic: CRDB-8308 Release note: None Co-authored-by: Austen McClernon <[email protected]> Co-authored-by: Andrew Baptist <[email protected]> Co-authored-by: David Taylor <[email protected]> Co-authored-by: Ricky Stewart <[email protected]>
- Loading branch information
Showing
41 changed files
with
572 additions
and
216 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 = "1878bb40f322c5c93bb7db26b6287219eb56507fc59b82292fcd4d2187639a16", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20231218155426-48b54c29d8fe", | ||
sha256 = "40cd8262139752f6c002d98be91763eb30cf5d6e2288f7e2163f47ee9b0ca50e", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20231220134654-bfc74496212f", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20231218155426-48b54c29d8fe.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20231220134654-bfc74496212f.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
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
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
Oops, something went wrong.