diff options
author | Erik Johnston <erik@matrix.org> | 2021-05-05 16:53:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-05 16:53:45 +0100 |
commit | 1fb9a2d0bf2506ca6e5343cb340a441585ca1c07 (patch) | |
tree | 20779cc0b54efac7c36412bf49e050ef3557b894 /synapse/app/homeserver.py | |
parent | Don't set the external cache if its been done recently (#9905) (diff) | |
download | synapse-1fb9a2d0bf2506ca6e5343cb340a441585ca1c07.tar.xz |
Limit how often GC happens by time. (#9902)
Synapse can be quite memory intensive, and unless care is taken to tune the GC thresholds it can end up thrashing, causing noticable performance problems for large servers. We fix this by limiting how often we GC a given generation, regardless of current counts/thresholds. This does not help with the reverse problem where the thresholds are set too high, but that should only happen in situations where they've been manually configured. Adds a `gc_min_seconds_between` config option to override the defaults. Fixes #9890.
Diffstat (limited to 'synapse/app/homeserver.py')
-rw-r--r-- | synapse/app/homeserver.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 8e78134bbe..6a823da10d 100644 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -342,6 +342,9 @@ def setup(config_options): events.USE_FROZEN_DICTS = config.use_frozen_dicts + if config.server.gc_seconds: + synapse.metrics.MIN_TIME_BETWEEN_GCS = config.server.gc_seconds + hs = SynapseHomeServer( config.server_name, config=config, |