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
107381: go.mod: bump pgx/v5 to 5.4.2 r=sean- a=sean-
Upgrade pgx from [v5.3.1 to v5.4.2](jackc/pgx@v5.3.1...v5.4.2#files_bucket).
> Replace platform specific syscalls for non-blocking IO with more traditional goroutines and deadlines. This returns to the v4 approach with some additional improvements and fixes. This restores the ability to use a pgx.Conn over an ssh.Conn as well as other non-TCP or Unix socket connections. In addition, it is a significantly simpler implementation that is less likely to have cross platform issues.
Release note: none
Epic: none
107450: compose: Deflake TestComposeCompare r=Xiang-Gu a=Xiang-Gu
This commit fixes a previously overlooked issue to actually disable using locales when creating tables in the TestComposeCompare test.
Inform cockroachdb#82867
Epic: None
Release justification: Test fixes
Release Note: None
107505: kvserver: add lease preference metrics r=erikgrinaker a=kvoli
There were no existing metrics to monitor the lease preference
conformance. This commit adds two metric gauges:
`leases.preferences.violating` and `leases.preferences.less-preferred`.
These metrics are reported by the store.
`leases.preferences.violating` indicates the number of valid leases a
store owns, which satisfy none of the preferences applied.
`leases.preferences.less-preferred` indicates the number of valid leases
a store owns, which satisfy some of the preferences applied, but not the
first one.
For example, with a lease preference `'[[+zone=a],[+zone=b]]'`, the
metric values with different leaseholders are:
```
leaseholder_locality="zone=c"
leases.preferences.less-preferred: 0
leases.preferences.violating: 1
```
```
leaseholder_locality="zone=b"
leases.preferences.less-preferred: 1
leases.preferences.violating: 0
```
```
leaseholder_locality="zone=a"
leases.preferences.less-preferred: 0
leases.preferences.violating: 0
```
When no preferences are applied, the lease is not counted in either
metric.
Epic: none
Informs: cockroachdb#106100
Release note (ops change): Introduce two new metrics to monitor lease
range preference conformance. `leases.preferences.violating` indicates
the number of valid leases a store owns, which satisfy none of the
preferences applied. `leases.preferences.less-preferred` indicates the
number of valid leases a store owns, which satisfy some of the
preferences applied, but not the first one.
107574: issues: escape title when doing regexp match r=rafiss a=rafiss
Without this, a test name that has regex in it could break this search, or even cause roachtest itself to crash.
Epic: none
Release note: None
Co-authored-by: Sean Chittenden <[email protected]>
Co-authored-by: Xiang Gu <[email protected]>
Co-authored-by: Erik Grinaker <[email protected]>
Co-authored-by: Austen McClernon <[email protected]>
Co-authored-by: Rafi Shamim <[email protected]>
0 commit comments