-
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
roachtest: admission-control/multitenant-fairness/read-heavy/skewed failed #97448
Comments
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ e028ce5b14505dfd17ef8b13001c0ab8ac811e3c:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 0d3393b0623a5c258b25725f64f3689e2f54667b:
Parameters: |
Workload fails with a context canceled for some reason. |
This test has previously failed in workload (with a different error) in #93304. |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ fca69b046f6389fbc4d2b6db428e27a5d7277773:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 39c06b5a438c01c93ffbfeeefe702d3f9b620eaf:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 13c58f621519794e775b7cfc4d8b557bc99eeca0:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ b0e5507f74c07e13cfda8cda8b9079b457a9f37d:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 21786aa112e6b822858f281c1cc59608987c5c0a:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 20e2adda3c76c7172dd986c871df0ae9a346918f:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ fcea283ebca17a6d923c5d4b0401697438b77dbd:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ cf14ad694ee562676f53e36fa8495206c3aed61f:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 14b43be03c1c246765be17aa15245493a42c401d:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 43a25a09f92408accdeb3cfed1eb35e02d375877:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 1b162d1b274eec7b307fbbfca7294460bfdef025:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 4dc9e98d8cc1b137ee4cc950a4a42e5895bb890b:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ d4a584e49f0b1ca89738376090939d7669c3b3db:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 5b2a5670cbbe895d76602c230390816e783e0caa:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ e4924e2b9be4a36d466beab53a80df9241df4783:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 10c1e3e01b7da4cced0478e1bfd711a1c9be9afc:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 9b43dc50d468171bc9919dc684b7274b63e13da2:
Parameters: |
This is not a release blocker -- it's the same as #78691 (these tests were recently re-enabled, and we're running into the same errors that made us skip them in the first place). I'll fix, but getting rid of these labels.
|
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ d68f5cdfb25476aaf874bff0bb6515eba02efcd2:
Parameters: |
Fixes cockroachdb#97448 (possibly). Fixes cockroachdb#78691. These tests run under severe CPU overload, and we see the workload getting observing the following errors: ERROR: liveness session expired 571.043163ms before transaction The SQL liveness lease extension work ends up getting severely starved, despite extending leases by 40s every 5s. It turns out for tenant SQL liveness work, we were using admissionpb.NormalPri, so such starvation was possible. This wasn't true for the system tenant where we bypassed AC altogether. Release note: None
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ f0489334a0ee6980a9d365b361d2fce4b2cdc05b:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 6c99966f604f3521acdb925b9f689529ffd46df3:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 53dbb86acb1d48309530181b94838faf937084d3:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 9acc75317aebfdfe69fb097a8a28e0040c7a67fd:
Parameters: |
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ b89fa2cc4bc1fb9447ab1009b34b6f354f9618f0:
Parameters: |
98207: sql: add REPLICATION and MANAGETENANT system privileges r=msbutler a=stevendanna This adds two new system privileges: - `REPLICATION`: Allows the user to call the internal functions that produce a cross-cluster replication stream. - `MANAGETENANT`: Allows the user to create and manage tenants. A user with the MANAGETENANT privileges is now able to execute the following statements: - SHOW TENANT - SHOW TENANTS - CREATE TENANT - CREATE TENANT FROM REPLICATION STREAM - DROP TENANT (if it is part of an active stream) - ALTER TENANT A user with the REPLICATION privileges is able to call the following functions: - crdb_internal.start_replication_stream - crdb_internal.replication_stream_progress - crdb_internal.stream_partition - crdb_internal.replication_stream_spec - crdb_internal.complete_replication_stream Fixes #95425 Release note: None 98785: roachtest: de-flake multitenant-fairness/read-heavy/skewed r=irfansharif a=irfansharif Fixes #97448 (possibly). Fixes #78691. These tests run under severe CPU overload, and we see the workload getting observing the following errors: ERROR: liveness session expired 571.043163ms before transaction The SQL liveness lease extension work ends up getting severely starved, despite extending leases by 40s every 5s. It turns out for tenant SQL liveness work, we were using admissionpb.NormalPri, so such starvation was possible. This wasn't true for the system tenant where we bypassed AC altogether. Release note: None 98821: sql: TestRandomSyntaxGeneration fixes r=cucaroach a=cucaroach ### sql: fix some TestRandomSyntaxGeneration bugs The RSG works by calling format on the AST's it generates so its good at finding Format bugs. Fix a missing separator in ShowBackupOptions. Example: ``` SHOW BACKUP 'family' IN ('string', 'placeholder', 'placeholder', 'placeholder', 'string', 'placeholder', 'string', 'placeholder') WITH incremental_location = 'nullif', privilegesdebug_dump_metadata_sst ``` Fix bad construction in ShowTenant. Example: ``` SHOW TENANT [B'10010'] WITH REPLICATION STATUS WITH CAPABILITIES ``` Epic: none Release note: None ### copy: fix copy grammar to match PG Previously COPY would allow a wide range of syntax in the COPY TO substatement. Now like PG we limit it to a few things. PG grammar is: ``` PreparableStmt: SelectStmt | InsertStmt | UpdateStmt | DeleteStmt | MergeStmt ``` And now we do something similar. This prevents the wheels from coming off when RSG generates EXPLAIN's in the substatement for instance. Release note: none Epic: none 99109: kvserver: fortify TestReplicaClosedTimestamp r=erikgrinaker a=tbg This test was flaky until ~Feb 2nd. This has since resolved, likely as a result of some other change, however there's an easy way to make the test a bit more resilient by widening a critical section. Closes #93864 Epic: none Release note: None 99122: ccl/multiregionccl: skip flaky secondary_region test r=matthewtodd a=matthewtodd Part of #92235. Part of #98020. It [flaked][1] this morning, after last night's [other skip][2] landed. [1]: #98020 (comment) [2]: #99031 Release note: None Co-authored-by: Steven Danna <[email protected]> Co-authored-by: irfan sharif <[email protected]> Co-authored-by: Tommy Reilly <[email protected]> Co-authored-by: Tobias Grieger <[email protected]> Co-authored-by: Matthew Todd <[email protected]>
roachtest.admission-control/multitenant-fairness/read-heavy/skewed failed with artifacts on master @ 286b3e235171a39b8f9910555affcc7ce310741a:
Parameters:
ROACHTEST_cloud=gce
,ROACHTEST_cpu=4
,ROACHTEST_encrypted=false
,ROACHTEST_fs=ext4
,ROACHTEST_localSSD=true
,ROACHTEST_ssd=0
Help
See: roachtest README
See: How To Investigate (internal)
This test on roachdash | Improve this report!
Jira issue: CRDB-24702
The text was updated successfully, but these errors were encountered: