-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
ccl,kv: skip a few flakey tests/sub-tests #67082
Merged
Merged
Conversation
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
Relevant test failure issues: cockroachdb#66991, cockroachdb#67034, cockroachdb#66942, cockroachdb#66480, cockroachdb#64313. Release note: None
irfansharif
force-pushed
the
210630.skip-tests
branch
from
June 30, 2021 18:49
6b74088
to
3993a69
Compare
RaduBerinde
approved these changes
Jun 30, 2021
Thanks! bors r+ |
Build succeeded: |
kvoli
added a commit
to kvoli/cockroach
that referenced
this pull request
Mar 15, 2023
`TestStoreRangeSplitRaceUninitializedRHS` was skipped some time ago, in mid 2021 (cockroachdb#67082). The test was skipped due to flakes that appeared related to untimely test cluster startup. This commit unskips the test and makes minor adjustments in order to be current with semantics of Raft transport. Without these adjustments, the `MsgVote` sent every microsecond with the intention of triggering a race, would completely fill up the Raft transport send queue. Once the queue was full, the test would fail as requests are dropped. This commit updates the `MsgVote` send loop logic to not require every `MsgVote` request to be sent for the test to succeed. Resolves: cockroachdb#66480 Release note: None
craig bot
pushed a commit
that referenced
this pull request
Mar 16, 2023
98601: ui: add PGCode to admin api errors r=j82w a=j82w Adding the PGCode makes it easy to identify the underlying issue of why the request failed. old error: ``` RequestError: An internal server error has occurred. Please check your CockroachDB logs for more details. ``` new error ``` RequestError: An internal server error has occurred. Please check your CockroachDB logs for more details. Error Code: 53200 ``` <img width="2058" alt="Screenshot 2023-03-14 at 2 51 57 PM" src="https://user-images.githubusercontent.com/8868107/225108075-5db442da-699f-487b-852c-732eb030f644.png"> Epic: none Closes: #98596 Release note: none 98715: kvserver: deflake and unskip split race uninit rhs r=nvanbenschoten a=kvoli `TestStoreRangeSplitRaceUninitializedRHS` was skipped some time ago, in mid 2021 (#67082). The test was skipped due to flakes that appeared related to untimely test cluster startup. This commit unskips the test and makes minor adjustments in order to be current with semantics of Raft transport. Without these adjustments, the `MsgVote` sent every microsecond with the intention of triggering a race, would completely fill up the Raft transport send queue. Once the queue was full, the test would fail as requests are dropped. This commit updates the `MsgVote` send loop logic to not require every `MsgVote` request to be sent for the test to succeed. Resolves: #66480 Release note: None Co-authored-by: j82w <jwilley@cockroachlabs.com> Co-authored-by: Austen McClernon <austen@cockroachlabs.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Relevant test failure issues: #66991, #67034, #66942, #66480, #64313.
Release note: None