0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-23 08:49:09 +02:00

Merge pull request #639 from matrix-org/erikj/as_user_update_batch

Update users table in a batched manner
This commit is contained in:
Erik Johnston 2016-03-10 15:38:00 +00:00
commit 703826886c

View file

@ -52,12 +52,17 @@ def run_upgrade(cur, database_engine, config, *args, **kwargs):
" service (IDs %s and %s); assigning arbitrarily to %s" % " service (IDs %s and %s); assigning arbitrarily to %s" %
(user_id, owned[user_id], appservice.id, owned[user_id]) (user_id, owned[user_id], appservice.id, owned[user_id])
) )
owned[user_id] = appservice.id owned.setdefault(appservice.id, []).append(user_id)
for user_id, as_id in owned.items(): for as_id, user_ids in owned.items():
n = 100
user_chunks = (user_ids[i:i + 100] for i in xrange(0, len(user_ids), n))
for chunk in user_chunks:
cur.execute( cur.execute(
database_engine.convert_param_style( database_engine.convert_param_style(
"UPDATE users SET appservice_id = ? WHERE name = ?" "UPDATE users SET appservice_id = ? WHERE name IN (%s)" % (
), ",".join("?" for _ in chunk),
(as_id, user_id) )
),
[as_id] + chunk
) )