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
146547: sql/schemachanger: handle idempotent scenarios for schema_locked r=fqazi a=fqazi
Previously, the declarative schema changer would automatically set/unset schema_locked on tables that are schema locked. This unfortunately also applied when operations were idempotent, which could lead to jobs that would needlessly toggle schema_locked. For example if a CREATE INDEX IF NOT EXISTS statement was issued, we would still toggle schema_locked. To address this, this patch only sets / unsets schema_locked if other elements are modified by the end of a build phase for a given operation.
Fixes: #146541
Release note: None
147026: sql: remove old hyperloglog version r=yuzefovich a=yuzefovich
This was only needed for compatibility with 24.3 nodes to ensure that table stats collection worked in mixed-version state. We no longer need compatibility with that version. Additionally remove no longer used sketch type field from the processor spec.
We've bumped the min version as well as removed mixed-version 24.3 logic test config, so this should now be safe.
Epic: None
Release note: None
147434: ui: Fix collapsing behaviour on tables r=alyshanjahani-crl a=alyshanjahani-crl
Previously, clicking the arrow icon to expand a region in the nodes table worked, but clicking the arrow to collapse did not. Instead, you had to click elsewhere on the row to collapse the region.
This behaviour occurs since expandRowByClick is enabled on the table, and so once the row is expanded, clicking the arrow to collapse triggers the collapse and a subsequent expansion.
Fixes: #146676
Release note: None
147442: jobs: add hints and details to job failure errors r=kyle-a-wong,msbutler a=dhartunian
Resolves#137050
Release note: None
147462: db-console: change disk throughput graph titles to omit magnitude r=angles-n-daemons a=angles-n-daemons
db-console: change disk throughput graph titles to omit magnitude
In the metrics page, with the hardware graphs selected, you'll notice that the title of the disk throughput graphs include `MiB`. This is confusing, as the magnitude of the y-axis is programmatically determinted (it will be KiB, or GiB depending on how large the deltas are between time segments).
To fix this, we strip the titles of their magnitude, going from MiB/s to simply Bytes/s, so that it's impossible for two prefixes show up in the same view.
Fixes: #141003
Epic: none
Release note (ui change): Changes the titles of the disk throughput graphs in the hardware metrics page to say only Bytes/s instead of MiB/s.
Co-authored-by: Faizan Qazi <[email protected]>
Co-authored-by: Yahor Yuzefovich <[email protected]>
Co-authored-by: Alyshan Jahani <[email protected]>
Co-authored-by: David Hartunian <[email protected]>
Co-authored-by: Brian Dillmann <[email protected]>
0 commit comments