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
Remove duplicates in the user_ips table and add an index #4370
Merged
Merged
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
36be147
merge
hawkowl 19c7149
changelog
hawkowl ef82fe3
add the migration
hawkowl c679c04
Merge remote-tracking branch 'origin/develop' into hawkowl/full-schema
hawkowl ddb6237
Merge remote-tracking branch 'origin/develop' into hawkowl/full-schema
hawkowl 7b7f593
cleanup on the db inserts
hawkowl 0844516
stuff
hawkowl 5d36ba6
Merge remote-tracking branch 'origin/develop' into hawkowl/full-schema
hawkowl 198ff60
fix
hawkowl 13e2bc9
remove some stuff
hawkowl 695fb72
remove some stuff
hawkowl 666487d
fix things that use the inmemory index
hawkowl ab70a81
try erik's method
hawkowl 33389de
update the index
hawkowl 28b4bd7
fix and use the progress system
hawkowl b88916f
don't need this
hawkowl a33779a
add some words from erik
hawkowl 3153b36
drop the old non-unique index
hawkowl 3d6bad0
changelog
hawkowl 7cbfdd1
fix
hawkowl b28f2e1
fix tests
hawkowl 497945f
fixes
hawkowl a201937
Correctly handle the last batch.
erikjohnston 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
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 @@ | ||
Apply a unique index to the user_ips table, preventing duplicates. |
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 |
---|---|---|
|
@@ -65,7 +65,27 @@ def __init__(self, db_conn, hs): | |
columns=["last_seen"], | ||
) | ||
|
||
# (user_id, access_token, ip) -> (user_agent, device_id, last_seen) | ||
self.register_background_update_handler( | ||
"user_ips_remove_dupes", | ||
self._remove_user_ip_dupes, | ||
) | ||
|
||
# Register a unique index | ||
self.register_background_index_update( | ||
"user_ips_device_unique_index", | ||
index_name="user_ips_user_token_ip_unique_index", | ||
table="user_ips", | ||
columns=["user_id", "access_token", "ip"], | ||
unique=True, | ||
) | ||
|
||
# Drop the old non-unique index | ||
self.register_background_update_handler( | ||
"user_ips_drop_nonunique_index", | ||
self._remove_user_ip_nonunique, | ||
) | ||
|
||
# (user_id, access_token, ip,) -> (user_agent, device_id, last_seen) | ||
self._batch_row_update = {} | ||
|
||
self._client_ip_looper = self._clock.looping_call( | ||
|
@@ -75,6 +95,106 @@ def __init__(self, db_conn, hs): | |
"before", "shutdown", self._update_client_ips_batch | ||
) | ||
|
||
@defer.inlineCallbacks | ||
def _remove_user_ip_nonunique(self, progress, batch_size): | ||
def f(conn): | ||
txn = conn.cursor() | ||
txn.execute( | ||
"DROP INDEX IF EXISTS user_ips_user_ip" | ||
) | ||
txn.close() | ||
|
||
yield self.runWithConnection(f) | ||
yield self._end_background_update("user_ips_drop_nonunique_index") | ||
defer.returnValue(1) | ||
|
||
@defer.inlineCallbacks | ||
def _remove_user_ip_dupes(self, progress, batch_size): | ||
|
||
last_seen_progress = progress.get("last_seen", 0) | ||
|
||
def get_last_seen(txn): | ||
txn.execute( | ||
""" | ||
SELECT last_seen FROM user_ips | ||
WHERE last_seen > ? | ||
ORDER BY last_seen | ||
LIMIT 1 | ||
OFFSET ? | ||
""", | ||
(last_seen_progress, batch_size) | ||
) | ||
results = txn.fetchone() | ||
return results | ||
|
||
# Get a last seen that's sufficiently far away enough from the last one | ||
last_seen = yield self.runInteraction( | ||
"user_ips_dups_get_last_seen", get_last_seen | ||
) | ||
|
||
if not last_seen: | ||
yield self._end_background_update("user_ips_remove_dupes") | ||
defer.returnValue(0) | ||
|
||
last_seen = last_seen[0] | ||
|
||
def remove(txn, last_seen_progress, last_seen): | ||
# This works by looking at all entries in the given time span, and | ||
# then for each (user_id, access_token, ip) tuple in that range | ||
# checking for any duplicates in the rest of the table (via a join). | ||
# It then only returns entries which have duplicates, and the max | ||
# last_seen across all duplicates, which can the be used to delete | ||
# all other duplicates. | ||
# It is efficient due to the existence of (user_id, access_token, | ||
# ip) and (last_seen) indices. | ||
txn.execute( | ||
""" | ||
SELECT user_id, access_token, ip, | ||
MAX(device_id), MAX(user_agent), MAX(last_seen) | ||
FROM ( | ||
SELECT user_id, access_token, ip | ||
FROM user_ips | ||
WHERE ? <= last_seen AND last_seen < ? | ||
ORDER BY last_seen | ||
) c | ||
INNER JOIN user_ips USING (user_id, access_token, ip) | ||
GROUP BY user_id, access_token, ip; | ||
HAVING count(*) > 1""", | ||
(last_seen_progress, last_seen) | ||
) | ||
res = txn.fetchall() | ||
hawkowl marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
# We've got some duplicates | ||
for i in res: | ||
user_id, access_token, ip, device_id, user_agent, last_seen = i | ||
|
||
# Drop all the duplicates | ||
txn.execute( | ||
""" | ||
DELETE FROM user_ips | ||
WHERE user_id = ? AND access_token = ? AND ip = ? | ||
""", | ||
(user_id, access_token, ip) | ||
) | ||
|
||
# Add in one to be the last_seen | ||
txn.execute( | ||
""" | ||
INSERT INTO user_ips | ||
(user_id, access_token, ip, device_id, user_agent, last_seen) | ||
VALUES (?, ?, ?, ?, ?, ?) | ||
""", | ||
(user_id, access_token, ip, device_id, user_agent, last_seen) | ||
) | ||
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. May as well use the 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. yeahhhh but everything else in this function is sql :P |
||
|
||
self._background_update_progress_txn(txn, {"last_seen": last_seen}) | ||
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. Missing update name param |
||
|
||
yield self.runInteraction( | ||
"user_ips_dups_remove", remove, last_seen_progress, last_seen | ||
) | ||
|
||
defer.returnValue(batch_size) | ||
|
||
@defer.inlineCallbacks | ||
def insert_client_ip(self, user_id, access_token, ip, user_agent, device_id, | ||
now=None): | ||
|
@@ -127,10 +247,10 @@ def _update_client_ips_batch_txn(self, txn, to_update): | |
"user_id": user_id, | ||
"access_token": access_token, | ||
"ip": ip, | ||
"user_agent": user_agent, | ||
"device_id": device_id, | ||
}, | ||
values={ | ||
"user_agent": user_agent, | ||
"device_id": device_id, | ||
"last_seen": last_seen, | ||
}, | ||
lock=False, | ||
|
@@ -227,7 +347,7 @@ def get_user_ip_and_agents(self, user): | |
results = {} | ||
|
||
for key in self._batch_row_update: | ||
uid, access_token, ip = key | ||
uid, access_token, ip, = key | ||
if uid == user_id: | ||
user_agent, _, last_seen = self._batch_row_update[key] | ||
results[(access_token, ip)] = (user_agent, last_seen) | ||
|
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,26 @@ | ||
/* Copyright 2018 New Vector Ltd | ||
* | ||
* 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. | ||
*/ | ||
|
||
-- delete duplicates | ||
INSERT INTO background_updates (update_name, progress_json) VALUES | ||
('user_ips_remove_dupes', '{}'); | ||
|
||
-- add a new unique index to user_ips table | ||
INSERT INTO background_updates (update_name, progress_json, depends_on) VALUES | ||
('user_ips_device_unique_index', '{}', 'user_ips_remove_dupes'); | ||
|
||
-- drop the old original index | ||
INSERT INTO background_updates (update_name, progress_json, depends_on) VALUES | ||
('user_ips_drop_nonunique_index', '{}', 'user_ips_device_unique_index'); |
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.
Spurious railing
;