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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5889 from matrix-org/rei/rss_inc2
Separated Statistics [2/7ish]
- Loading branch information
Showing
6 changed files
with
460 additions
and
13 deletions.
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
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
24 changes: 24 additions & 0 deletions
24
synapse/storage/schema/delta/56/stats_separated2.sql.postgres
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,24 @@ | ||
/* Copyright 2019 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. | ||
*/ | ||
|
||
-- These partial indices helps us with finding incomplete stats row | ||
CREATE INDEX IF NOT EXISTS room_stats_not_complete | ||
ON room_stats_current (room_id) | ||
WHERE completed_delta_stream_id IS NULL; | ||
|
||
CREATE INDEX IF NOT EXISTS user_stats_not_complete | ||
ON user_stats_current (user_id) | ||
WHERE completed_delta_stream_id IS NULL; | ||
|
27 changes: 27 additions & 0 deletions
27
synapse/storage/schema/delta/56/stats_separated2.sql.sqlite
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,27 @@ | ||
/* Copyright 2019 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. | ||
*/ | ||
|
||
-- even though SQLite >= 3.8 can support partial indices, we won't enable | ||
-- them, in case the SQLite database may be later used on another system. | ||
-- It's also the case that SQLite is only likely to be used in small | ||
-- deployments or testing, where the optimisations gained by use of a | ||
-- partial index are not a big concern. | ||
|
||
CREATE INDEX IF NOT EXISTS room_stats_not_complete | ||
ON room_stats_current (completed_delta_stream_id, room_id); | ||
|
||
CREATE INDEX IF NOT EXISTS user_stats_not_complete | ||
ON user_stats_current (completed_delta_stream_id, user_id); | ||
|
Oops, something went wrong.