This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Couldn't load subscription status.
- Fork 2.1k
Use partial indices on SQLIte. #13802
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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 hidden or 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 @@ | ||
| Use partial indices on SQLite. |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -1255,7 +1255,6 @@ def __init__( | |
| table="event_push_actions", | ||
| columns=["highlight", "stream_ordering"], | ||
| where_clause="highlight=0", | ||
| psql_only=True, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. #13141 gives no info on why this is PostgreSQL-only, but I assume because the partial index was ignored on SQLite? |
||
| ) | ||
|
|
||
| async def get_push_actions_for_user( | ||
|
|
||
56 changes: 56 additions & 0 deletions
56
synapse/storage/schema/main/delta/72/09partial_indices.sql.sqlite
This file contains hidden or 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,56 @@ | ||
| /* Copyright 2022 The Matrix.org Foundation C.I.C | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| -- SQLite needs to rebuild indices which use partial indices on Postgres, but | ||
| -- previously did not use them on SQLite. | ||
|
|
||
| -- Drop each index that was added with register_background_index_update AND specified | ||
| -- a where_clause (that existed before this delta). | ||
|
|
||
| -- From events_bg_updates.py | ||
| DROP INDEX IF EXISTS event_contains_url_index; | ||
| -- There is also a redactions_censored_redacts index, but that gets dropped. | ||
| DROP INDEX IF EXISTS redactions_have_censored_ts; | ||
| -- There is also a PostgreSQL only index (event_contains_url_index2) | ||
| -- which gets renamed to event_contains_url_index. | ||
|
|
||
| -- From roommember.py | ||
| DROP INDEX IF EXISTS room_memberships_user_room_forgotten; | ||
|
|
||
| -- From presence.py | ||
| DROP INDEX IF EXISTS presence_stream_state_not_offline_idx; | ||
|
|
||
| -- From media_repository.py | ||
| DROP INDEX IF EXISTS local_media_repository_url_idx; | ||
|
|
||
| -- From event_push_actions.py | ||
| DROP INDEX IF EXISTS event_push_actions_highlights_index; | ||
| -- There's also a event_push_actions_stream_highlight_index which was previously | ||
| -- PostgreSQL-only. | ||
|
|
||
| -- From state.py | ||
| DROP INDEX IF EXISTS current_state_events_member_index; | ||
|
|
||
| -- Re-insert the background jobs to re-create the indices. | ||
| INSERT INTO background_updates (ordering, update_name, progress_json, depends_on) VALUES | ||
| (7209, 'event_contains_url_index', '{}', NULL), | ||
| (7209, 'redactions_have_censored_ts_idx', '{}', NULL), | ||
| (7209, 'room_membership_forgotten_idx', '{}', NULL), | ||
| (7209, 'presence_stream_not_offline_index', '{}', NULL), | ||
| (7209, 'local_media_repository_url_idx', '{}', NULL), | ||
| (7209, 'event_push_actions_highlights_index', '{}', NULL), | ||
| (7209, 'event_push_actions_stream_highlight_index', '{}', NULL), | ||
| (7209, 'current_state_members_idx', '{}', NULL) | ||
| ON CONFLICT (update_name) DO NOTHING; |
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.
Uh oh!
There was an error while loading. Please reload this page.