diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-11-07 14:28:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 14:28:00 +0000 |
commit | 2193513346054769080dd8a07586bed652acae60 (patch) | |
tree | 31f764450d8c9e4157c60eb0d84094cacdf122e4 /changelog.d/14374.bugfix | |
parent | Add example on how to load balance /sync requests (#14297) (diff) | |
download | synapse-2193513346054769080dd8a07586bed652acae60.tar.xz |
Fix background update table-scanning `events` (#14374)
When this background update did its last batch, it would try to update all the events that had been inserted since the bgupdate started, which could cause a table-scan. Make sure we limit the update correctly.
Diffstat (limited to 'changelog.d/14374.bugfix')
-rw-r--r-- | changelog.d/14374.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/14374.bugfix b/changelog.d/14374.bugfix new file mode 100644 index 0000000000..8366cfbf8a --- /dev/null +++ b/changelog.d/14374.bugfix @@ -0,0 +1 @@ +Fix a background database update, introduced in Synapse 1.64.0, which could cause poor database performance. |