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 /docs | |
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 'docs')
-rw-r--r-- | docs/sample_config.yaml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index d013725cdc..f469d6e54f 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -152,6 +152,16 @@ presence: # #gc_thresholds: [700, 10, 10] +# The minimum time in seconds between each GC for a generation, regardless of +# the GC thresholds. This ensures that we don't do GC too frequently. +# +# A value of `[1s, 10s, 30s]` indicates that a second must pass between consecutive +# generation 0 GCs, etc. +# +# Defaults to `[1s, 10s, 30s]`. +# +#gc_min_interval: [0.5s, 30s, 1m] + # Set the limit on the returned events in the timeline in the get # and sync operations. The default value is 100. -1 means no upper limit. # |