You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
152275: log,*: find and replace log.*Warning* with log.Dev.*Warning* r=kyle-a-wong a=kyle-a-wong
Epic: CRDB-53410
Release note: None
152348: backup: remove mixed-version check for incremental path suffix r=msbutler a=kev-cao
The `start_time` suffix was added to incremental backup paths in 25.2 A mixed version check was added to ensure backups written during the mixed-version state when ugprading to 25.2 would be written correctly. This check is no longer needed.
Epic: None
Release note: None
152366: unsafesql: convert tests to table tests r=angles-n-daemons a=angles-n-daemons
This is just a bit of cleanup in the unsafesql test, many of the existing tests share a similar structure, so I created a table test layout so that they work better.
Fixes: none
Epic: none
Release note: none
152371: jobs: mark a few auto partial stats metrics as essential r=yuzefovich a=yuzefovich
In order to match which metrics we mark as "essential" for AUTO CREATE STATS jobs, we now mark the following AUTO CREATE PARTIAL STATS job metrics:
- `jobs.auto_create_partial_stats.currently_paused`
- `jobs.auto_create_partial_stats.currently_running`
- `jobs.auto_create_partial_stats.resume_failed`.
Epic: CRDB-52656
Release note: None
Co-authored-by: Kyle Wong <[email protected]>
Co-authored-by: Kevin Cao <[email protected]>
Co-authored-by: Brian Dillmann <[email protected]>
Co-authored-by: Yahor Yuzefovich <[email protected]>
description: Number of auto_create_partial_stats jobs currently considered Paused
337
+
y_axis_label: jobs
338
+
type: GAUGE
339
+
unit: COUNT
340
+
aggregation: AVG
341
+
derivative: NONE
342
+
how_to_use: This metric is a high-level indicator that automatically generated partial statistics jobs are paused which can lead to the query optimizer running with stale statistics. Stale statistics can cause suboptimal query plans to be selected leading to poor query performance.
description: Number of auto_create_partial_stats jobs currently running in Resume or OnFailOrCancel state
348
+
y_axis_label: jobs
349
+
type: GAUGE
350
+
unit: COUNT
351
+
aggregation: AVG
352
+
derivative: NONE
353
+
how_to_use: This metric tracks the number of active automatically generated partial statistics jobs that could also be consuming resources. Ensure that foreground SQL traffic is not impacted by correlating this metric with SQL latency and query volume metrics.
description: Number of auto_create_partial_stats jobs which failed with a non-retriable error
359
+
y_axis_label: jobs
360
+
type: COUNTER
361
+
unit: COUNT
362
+
aggregation: AVG
363
+
derivative: NON_NEGATIVE_DERIVATIVE
364
+
how_to_use: This metric is a high-level indicator that automatically generated partial table statistics is failing. Failed statistic creation can lead to the query optimizer running with stale statistics. Stale statistics can cause suboptimal query plans to be selected leading to poor query performance.
how_to_use: This metric tracks the number of active create statistics jobs that may be consuming resources. Ensure that foreground SQL traffic is not impacted by correlating this metric with SQL latency and query volume metrics.
430
+
how_to_use: This metric tracks the number of active create statistics jobs that could also be consuming resources. Ensure that foreground SQL traffic is not impacted by correlating this metric with SQL latency and query volume metrics.
0 commit comments