-
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
pkg/ccl/serverccl/statusccl/statusccl_test: TestTenantStatusAPI failed #99559
Comments
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 2bd2c806ab3044569b09e0a205b5bc0452ad4e2b:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 530100fd39cc722bc324bfb3869a325622258fb3:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 3382b2737ceb72de9b14d1d5923773718be5bca7:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 1cd507a7c6582fd91bb56123e62bd4fde45c4d22:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ a4ab6b6243f509e62993b4d81855f23470d9901a:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ b767225a6893ea6e81d50618d634dbba92d3b680:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 8124bff03d073f35f4d2b6a2048c7f4417d757d9:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 10665f9856d9c7ca51557bdf5b48fe9df796228b:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 23ea65e4b5cfaa5e02298cddfbe8f9fbe581456b:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 1f3419e178bdba544f74d9c9e14a4682efd18028:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 847de4595b62a0c03b14a3d0865cc8222fcf0f61:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 2f4231084e27760b4927e15da9b6d46705dc8552:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 5608a146973cb002756eef7bcafd002eb038afb4:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 3b1bc872bb4bf8e5eb2ad8790ba8ec781167dd1f:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 7d02e061759599a2b054ee06c71524443f77d20a:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 439c515b2a0058648731da73993c409544404da1:
Parameters: Same failure on other branches
|
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 439c515b2a0058648731da73993c409544404da1:
Parameters: Same failure on other branches
|
Informs cockroachdb#92382, cockroachdb#99770, cockroachdb#99559 Epic: none Release note: None
100083: kvserver: record metrics for ErrProposalDropped r=pavelkalinnikov a=tbg Touches #100096. Epic: none Release note: None 105093: sql: use datum alloc for crdb_internal stmt stats rows r=dt a=dt Happened to observe a cluster running a customer test suite which included a query that inspected stmt stats often, causing the CRDB node to spend a considerable amount of CPU time in production of the stmt stats vtable, in particular allocating (and then GC'ing) individual datums, especially given how wide this table has become with the addition of storage stats. This change uses a datum allocator to produce those rows to reduce the number of separate allocations from the runtime. Release note: none. Epic: none. 105197: statusccl: skip flaky TenantStatusAPI tests r=zachlite a=zachlite Informs #92382, #99770, #99559 Epic: none Release note: None Co-authored-by: Tobias Grieger <[email protected]> Co-authored-by: David Taylor <[email protected]> Co-authored-by: Zach Lite <[email protected]>
Informs cockroachdb#92382, cockroachdb#99770, cockroachdb#99559 Epic: none Release note: None
This commit fixes flaky behavior while running `TestSpanStatsFanOut` and `TestTenantSpanStats` under stress. Both tests have been updated to ensure the following behavior: - The tests make sure range splits occur before proceeding. - The tests will retry their assertions to give the new key-value pairs time to replicate. Additionally, `NewTestTenantHelper` was updated to accept a parameter for the number of nodes in the test host cluster. `TestTenantSpanStats` now uses a 3-node cluster to test a real fan-out. Resolves cockroachdb#99770 Resolves cockroachdb#99559 Epic:none Release note: None
106551: server, statusccl: de-flake span stats fan-out tests r=zachlite a=zachlite This commit fixes flaky behavior while running `TestSpanStatsFanOut` and `TestTenantSpanStats` under stress. Both tests have been updated to ensure the following behavior: - The tests make sure range splits occur before proceeding. - The tests will retry their assertions to give the new key-value pairs time to replicate. Additionally, `NewTestTenantHelper` was updated to accept a parameter for the number of nodes in the test host cluster. `TestTenantSpanStats` now uses a 3-node cluster to test a real fan-out. Resolves #99770 Resolves #99559 Epic:none Release note: None 106627: diagnosticsccl: unskip TestTenantReport r=yuzefovich a=yuzefovich The flakiness of the test was resolved by #106053. Addresses: #101622. Epic: None Release note: None Co-authored-by: zachlite <[email protected]> Co-authored-by: Yahor Yuzefovich <[email protected]>
This commit fixes flaky behavior while running `TestSpanStatsFanOut` and `TestTenantSpanStats` under stress. Both tests have been updated to ensure the following behavior: - The tests make sure range splits occur before proceeding. - The tests will retry their assertions to give the new key-value pairs time to replicate. Additionally, `NewTestTenantHelper` was updated to accept a parameter for the number of nodes in the test host cluster. `TestTenantSpanStats` now uses a 3-node cluster to test a real fan-out. Resolves #99770 Resolves #99559 Epic:none Release note: None
pkg/ccl/serverccl/statusccl/statusccl_test.TestTenantStatusAPI failed with artifacts on master @ 0fcc33bc2870961b9387999d8a9fed97fccbb2ae:
Parameters:
TAGS=bazel,gss,deadlock
Help
See also: How To Investigate a Go Test Failure (internal)
Same failure on other branches
This test on roachdash | Improve this report!
Jira issue: CRDB-25932
The text was updated successfully, but these errors were encountered: