-
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
kvserver: TestStoreMetrics is flakey #90631
Comments
Refs: cockroachdb#90631 Reason: flaky test Generated by bin/skip-test. Release justification: non-production code changes Release note: None
|
90478: server: write pebble log messages to storage channel r=knz a=renatolabs Previously, when setting up the server, the pebble engine would be initialized with Pebble's default logger. The reason for this is that the pebble initialization code calls `EnsureDefaults` on the configuration options _before_ checking if the `options.Logger` is nil/unset. At that point, it will never be unset, as `EnsureDefaults` will set the logger to `pebble.DefaultLogger` if it was not previously set. This change overwrites the pebble logger if its found to be the `DefaultLogger`. We never want to use pebble's `DefaultLogger` in CRDB as that would mean pebble would use the standard library `log` package, making every message emitted by Pebble to be treated as `INFO` level messages, regardless of severity (including `log.Fatal` calls). Related to #83079. Fixes #72683. Fixes #90483. Release note: None. 90632: kv/kvserver: skip TestStoreMetrics r=jbowens a=adityamaru Refs: #90631 Reason: flaky test Generated by bin/skip-test. Release justification: non-production code changes Release note: None Co-authored-by: Renato Costa <[email protected]> Co-authored-by: adityamaru <[email protected]>
@bananabrick if you have time, can you triage this flake this week? |
Describe the problem
It's failed 3 in the last 20. https://teamcity.cockroachdb.com/test/-743047615087228185?currentProjectId=Cockroach_Ci_TestsGcpLinuxX8664BigVm&branch=%3Cdefault%3E&expandTestHistoryChartSection=true
Here's a failure: https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_UnitTests_BazelUnitTests/7125033?showRootCauses=false&expandBuildProblemsSection=true&expandBuildDeploymentsSection=true&expandBuildTestsSection=true
client_metrics_test.go:168: gauge rocksdb.table-readers-mem-estimate = 0 < min 50
Jira issue: CRDB-20866
Epic CRDB-20293
The text was updated successfully, but these errors were encountered: