Skip to content

Commit

Permalink
upgrades: update system.web_sessions migration to handle orphaned rows
Browse files Browse the repository at this point in the history
This patch updates the system.web_sessions user ID migration to delete
orphaned rows (i.e. rows corresponding to users that have been dropped)
after backfilling user IDs. They need to be deleted since they block
the addition of the NOT NULL constraint on the column.

Release note: None
  • Loading branch information
andyyang890 committed Mar 30, 2023
1 parent 108b484 commit 715078b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 10 deletions.
37 changes: 27 additions & 10 deletions pkg/upgrade/upgrades/web_sessions_table_user_id_migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ WHERE w.user_id IS NULL AND w.username = u.username
LIMIT 1000
`

const deleteRowsForDroppedUsersWebSessionsTableStmt = `
DELETE FROM system.web_sessions
WHERE user_id IS NULL
LIMIT 1000
`

const setUserIDColumnToNotNullWebSessionsTableStmt = `
ALTER TABLE system.web_sessions
ALTER COLUMN user_id SET NOT NULL
Expand All @@ -62,16 +68,27 @@ func backfillWebSessionsTableUserIDColumn(
ctx context.Context, cs clusterversion.ClusterVersion, d upgrade.TenantDeps,
) error {
ie := d.DB.Executor()
for {
rowsAffected, err := ie.ExecEx(ctx, "backfill-user-id-col-web-sessions-table", nil, /* txn */
sessiondata.NodeUserSessionDataOverride,
backfillUserIDColumnWebSessionsTableStmt,
)
if err != nil {
return err
}
if rowsAffected == 0 {
break
for _, op := range []struct {
name string
query string
}{
{
name: "backfill-user-id-col-web-sessions-table",
query: backfillUserIDColumnWebSessionsTableStmt,
},
{
name: "delete-rows-for-dropped-users-web-sessions-table",
query: deleteRowsForDroppedUsersWebSessionsTableStmt,
},
} {
for {
rowsAffected, err := ie.ExecEx(ctx, op.name, nil /* txn */, sessiondata.NodeUserSessionDataOverride, op.query)
if err != nil {
return err
}
if rowsAffected == 0 {
break
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ VALUES (
})
tdb.CheckQueryResults(t, "SELECT count(*) FROM system.web_sessions", [][]string{{strconv.Itoa(numUsers)}})

// Drop a user to test that migration deletes orphaned rows.
if numUsers > 0 {
tdb.Exec(t, "DROP USER testuser0")
numUsers -= 1
}

// Run migrations.
_, err := tc.Conns[0].ExecContext(ctx, `SET CLUSTER SETTING version = $1`,
clusterversion.ByKey(clusterversion.V23_1WebSessionsTableHasUserIDColumn).String())
Expand Down

0 comments on commit 715078b

Please sign in to comment.