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
150747: sql: unblock user table changes from long-running transactions r=bghal a=bghal
sql: unblock user table changes from long-running transactions
Currently, the `CREATE USER` and the `GRANT role` operations use a
bumped descriptor to invalidate caches of the user table.
This blocked those operations until long-running transactions using the
old table version committed.
This change adds special handling of version bumps to wait for
visibility of the change rather than convergence across the cluster. It
no longer creates (blocking) jobs for the version bumps.
Epic: CRDB-49398Fixes: #138691
Release note (sql change): The `CREATE USER` and `GRANT role` operations
now wait for full-cluster visibility of the new user table version
rather than blocking on convergence.
152015: backup: remove old incremental backup location lookup r=dt a=kev-cao
In pre-22.2 backups, incremental backups were written to the same directory as the full backup. This was removed in 22.2, but logic was kept in place to maintain backwards compatibility and allow later versions to restore from pre-22.2 backups.
However, given that we are now on 25.4 and are many major versions past the removal of the old default location, the legacy logic is now being removed to facilitate the development of backup indexes.
Epic: None
Release note: None
Co-authored-by: Brendan Gerrity <[email protected]>
Co-authored-by: Kevin Cao <[email protected]>
0 commit comments