summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2023-08-17 14:07:57 +0100
committerGitHub <noreply@github.com>2023-08-17 14:07:57 +0100
commiteb0dbab15b119eab7721bc03ac1cfc7f6b638bb3 (patch)
tree5935d694cd4af3b5833a8b6f39b982ebd8d437ec /changelog.d
parentOverride global statement timeout when creating indexes in Postgres (#16085) (diff)
downloadsynapse-eb0dbab15b119eab7721bc03ac1cfc7f6b638bb3.tar.xz
Fix database performance of read/write worker locks (#16061)
We were seeing serialization errors when taking out multiple read locks.

The transactions were retried, so isn't causing any failures.

Introduced in #15782.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/16061.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/16061.misc b/changelog.d/16061.misc
new file mode 100644
index 0000000000..37928b670f
--- /dev/null
+++ b/changelog.d/16061.misc
@@ -0,0 +1 @@
+Fix database performance of read/write worker locks.