This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Stop writing to column user_id
of tables profiles
and user_filters
#15787
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
8d4b33b
stop writing to column `user_id` of table `profiles`
H-Shay 73aed9f
stop writing to column `user_id` of table `user_filters`
H-Shay 583cf92
bump schema version and compat version
H-Shay 29dc08c
newsfragment
H-Shay 7bc1a57
Merge branch 'develop' into shay/localpart_mig_4
H-Shay ff501e6
add unique index background jobs to list
H-Shay 4c27caa
drop bg update tests for update that has already run
H-Shay ea8bb40
Merge branch 'develop' into shay/localpart_mig_4
H-Shay 71f63cb
properly re-create user_filters table
H-Shay File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Stop writing to column `user_id` of tables `profiles` and `user_filters`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
synapse/storage/schema/main/delta/79/01_drop_user_id_constraint_profiles.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
from synapse.storage.database import LoggingTransaction | ||
from synapse.storage.engines import BaseDatabaseEngine, PostgresEngine | ||
|
||
|
||
def run_create(cur: LoggingTransaction, database_engine: BaseDatabaseEngine) -> None: | ||
""" | ||
Update to drop the NOT NULL constraint on column user_id so that we can cease to | ||
write to it without inserts to other columns triggering the constraint | ||
""" | ||
|
||
if isinstance(database_engine, PostgresEngine): | ||
drop_sql = """ | ||
ALTER TABLE profiles ALTER COLUMN user_id DROP NOT NULL | ||
""" | ||
cur.execute(drop_sql) | ||
else: | ||
# irritatingly in SQLite we need to rewrite the table to drop the constraint. | ||
cur.execute("DROP TABLE IF EXISTS temp_profiles") | ||
|
||
create_sql = """ | ||
CREATE TABLE temp_profiles ( | ||
full_user_id text NOT NULL, | ||
user_id text, | ||
displayname text, | ||
avatar_url text, | ||
UNIQUE (full_user_id), | ||
MatMaul marked this conversation as resolved.
Show resolved
Hide resolved
|
||
UNIQUE (user_id) | ||
) | ||
""" | ||
cur.execute(create_sql) | ||
|
||
copy_sql = """ | ||
INSERT INTO temp_profiles ( | ||
user_id, | ||
displayname, | ||
avatar_url, | ||
full_user_id) | ||
SELECT user_id, displayname, avatar_url, full_user_id FROM profiles | ||
""" | ||
cur.execute(copy_sql) | ||
|
||
drop_sql = """ | ||
DROP TABLE profiles | ||
""" | ||
cur.execute(drop_sql) | ||
|
||
rename_sql = """ | ||
ALTER TABLE temp_profiles RENAME to profiles | ||
""" | ||
cur.execute(rename_sql) |
54 changes: 54 additions & 0 deletions
54
synapse/storage/schema/main/delta/79/02_drop_user_id_constraint_user_filters.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
from synapse.storage.database import LoggingTransaction | ||
from synapse.storage.engines import BaseDatabaseEngine, PostgresEngine | ||
|
||
|
||
def run_create(cur: LoggingTransaction, database_engine: BaseDatabaseEngine) -> None: | ||
""" | ||
Update to drop the NOT NULL constraint on column user_id so that we can cease to | ||
write to it without inserts to other columns triggering the constraint | ||
""" | ||
if isinstance(database_engine, PostgresEngine): | ||
drop_sql = """ | ||
ALTER TABLE user_filters ALTER COLUMN user_id DROP NOT NULL | ||
""" | ||
cur.execute(drop_sql) | ||
|
||
else: | ||
# irritatingly in SQLite we need to rewrite the table to drop the constraint. | ||
cur.execute("DROP TABLE IF EXISTS temp_user_filters") | ||
|
||
create_sql = """ | ||
CREATE TABLE temp_user_filters ( | ||
full_user_id text NOT NULL, | ||
user_id text, | ||
filter_id bigint NOT NULL, | ||
filter_json bytea NOT NULL | ||
) | ||
""" | ||
cur.execute(create_sql) | ||
|
||
index_sql = """ | ||
CREATE UNIQUE INDEX IF NOT EXISTS user_filters_full_user_id_unique ON | ||
temp_user_filters (full_user_id, filter_id) | ||
""" | ||
cur.execute(index_sql) | ||
|
||
copy_sql = """ | ||
INSERT INTO temp_user_filters ( | ||
user_id, | ||
filter_id, | ||
filter_json, | ||
full_user_id) | ||
SELECT user_id, filter_id, filter_json, full_user_id FROM user_filters | ||
""" | ||
cur.execute(copy_sql) | ||
|
||
drop_sql = """ | ||
DROP TABLE user_filters | ||
""" | ||
cur.execute(drop_sql) | ||
|
||
rename_sql = """ | ||
ALTER TABLE temp_user_filters RENAME to user_filters | ||
""" | ||
cur.execute(rename_sql) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FTR, this is included in this PR because it is the one that begin using
full_user_id
for the upserts.