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
154544: roachtest: update DSC mixed-version test for v25.3-v25.4 r=rafiss a=rafiss
Updated the declarative schema changer job compatibility mixed-version test to test statements added to the DSC in v25.3 and v25.4, replacing the previous v24.2-v24.3 version range.
The test now validates backward and forward compatibility for:
- v25.3: ALTER TABLE ... DROP NOT NULL
- v25.4: TRUNCATE, RENAME TABLE, ALTER TABLE ... SET ON UPDATE, ALTER TABLE ... RENAME COLUMN
Added cluster version checks to conditionally execute DDLs based on the active cluster version, ensuring the test runs correctly during mixed-version upgrades.
fixes#153308
Release note: None
154699: sql: fix label for routine started metrics r=yuzefovich a=yuzefovich
During 25.4 in ef4acb4 we merged a change to add counters for stmts started and executed in routines. However, for both types we used `sql.count` label which I think is a mistake - we should use `sql.started.count` for "started" and `sql.count` for "executed" (similar to what we do for stmts outside of the routines).
Epic: CRDB-52366
Release note: None
Co-authored-by: Rafi Shamim <[email protected]>
Co-authored-by: Yahor Yuzefovich <[email protected]>
description: Number of SQL DELETE statements started within routine invocation
669
669
y_axis_label: SQL Statements
670
670
type: COUNTER
@@ -674,7 +674,7 @@ layers:
674
674
how_to_use: This high-level metric reflects workload volume. Monitor this metric to identify abnormal application behavior or patterns over time. If abnormal patterns emerge, apply the metric's time range to the SQL Activity pages to investigate interesting outliers or patterns. For example, on the Transactions page and the Statements page, sort on the Execution Count column. To find problematic sessions, on the Sessions page, sort on the Transaction Count column. Find the sessions with high transaction counts and trace back to a user or application.
description: Number of SQL INSERT statements started within routine invocation
708
708
y_axis_label: SQL Statements
709
709
type: COUNTER
@@ -713,7 +713,7 @@ layers:
713
713
how_to_use: This high-level metric reflects workload volume. Monitor this metric to identify abnormal application behavior or patterns over time. If abnormal patterns emerge, apply the metric's time range to the SQL Activity pages to investigate interesting outliers or patterns. For example, on the Transactions page and the Statements page, sort on the Execution Count column. To find problematic sessions, on the Sessions page, sort on the Transaction Count column. Find the sessions with high transaction counts and trace back to a user or application.
description: Number of SQL SELECT statements started within routine invocation
747
747
y_axis_label: SQL Statements
748
748
type: COUNTER
@@ -752,7 +752,7 @@ layers:
752
752
how_to_use: This high-level metric reflects workload volume. Monitor this metric to identify abnormal application behavior or patterns over time. If abnormal patterns emerge, apply the metric's time range to the SQL Activity pages to investigate interesting outliers or patterns. For example, on the Transactions page and the Statements page, sort on the Execution Count column. To find problematic sessions, on the Sessions page, sort on the Transaction Count column. Find the sessions with high transaction counts and trace back to a user or application.
description: Number of SQL UPDATE statements started within routine invocation
786
786
y_axis_label: SQL Statements
787
787
type: COUNTER
@@ -791,7 +791,7 @@ layers:
791
791
how_to_use: This high-level metric reflects workload volume. Monitor this metric to identify abnormal application behavior or patterns over time. If abnormal patterns emerge, apply the metric's time range to the SQL Activity pages to investigate interesting outliers or patterns. For example, on the Transactions page and the Statements page, sort on the Execution Count column. To find problematic sessions, on the Sessions page, sort on the Transaction Count column. Find the sessions with high transaction counts and trace back to a user or application.
HowToUse: "This high-level metric reflects workload volume. Monitor this metric to identify abnormal application behavior or patterns over time. If abnormal patterns emerge, apply the metric's time range to the SQL Activity pages to investigate interesting outliers or patterns. For example, on the Transactions page and the Statements page, sort on the Execution Count column. To find problematic sessions, on the Sessions page, sort on the Transaction Count column. Find the sessions with high transaction counts and trace back to a user or application.",
@@ -1142,7 +1142,7 @@ var (
1142
1142
Help: "Number of SQL UPDATE statements started within routine invocation",
HowToUse: "This high-level metric reflects workload volume. Monitor this metric to identify abnormal application behavior or patterns over time. If abnormal patterns emerge, apply the metric's time range to the SQL Activity pages to investigate interesting outliers or patterns. For example, on the Transactions page and the Statements page, sort on the Execution Count column. To find problematic sessions, on the Sessions page, sort on the Transaction Count column. Find the sessions with high transaction counts and trace back to a user or application.",
@@ -1152,7 +1152,7 @@ var (
1152
1152
Help: "Number of SQL INSERT statements started within routine invocation",
HowToUse: "This high-level metric reflects workload volume. Monitor this metric to identify abnormal application behavior or patterns over time. If abnormal patterns emerge, apply the metric's time range to the SQL Activity pages to investigate interesting outliers or patterns. For example, on the Transactions page and the Statements page, sort on the Execution Count column. To find problematic sessions, on the Sessions page, sort on the Transaction Count column. Find the sessions with high transaction counts and trace back to a user or application.",
@@ -1162,7 +1162,7 @@ var (
1162
1162
Help: "Number of SQL DELETE statements started within routine invocation",
HowToUse: "This high-level metric reflects workload volume. Monitor this metric to identify abnormal application behavior or patterns over time. If abnormal patterns emerge, apply the metric's time range to the SQL Activity pages to investigate interesting outliers or patterns. For example, on the Transactions page and the Statements page, sort on the Execution Count column. To find problematic sessions, on the Sessions page, sort on the Transaction Count column. Find the sessions with high transaction counts and trace back to a user or application.",
0 commit comments