2020-05-11 13:45:23 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2020 Matrix.org Foundation C.I.C.
|
2023-11-21 15:29:58 -05:00
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2020-05-11 13:45:23 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
from synapse.config.cache import CacheConfig, add_resizable_cache
|
2022-12-16 08:53:28 -05:00
|
|
|
from synapse.types import JsonDict
|
2020-05-11 13:45:23 -04:00
|
|
|
from synapse.util.caches.lrucache import LruCache
|
|
|
|
|
|
|
|
from tests.unittest import TestCase
|
|
|
|
|
|
|
|
|
|
|
|
class CacheConfigTests(TestCase):
|
2022-12-16 08:53:28 -05:00
|
|
|
def setUp(self) -> None:
|
2021-10-12 08:55:33 -04:00
|
|
|
# Reset caches before each test since there's global state involved.
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config = CacheConfig()
|
2021-10-12 08:55:33 -04:00
|
|
|
self.config.reset()
|
2021-10-06 10:47:41 -04:00
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
def tearDown(self) -> None:
|
2021-10-12 08:55:33 -04:00
|
|
|
# Also reset the caches after each test to leave state pristine.
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config.reset()
|
2020-05-11 13:45:23 -04:00
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
def test_individual_caches_from_environ(self) -> None:
|
2020-05-11 13:45:23 -04:00
|
|
|
"""
|
|
|
|
Individual cache factors will be loaded from the environment.
|
|
|
|
"""
|
2022-12-16 08:53:28 -05:00
|
|
|
config: JsonDict = {}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config._environ = {
|
2020-05-11 13:45:23 -04:00
|
|
|
"SYNAPSE_CACHE_FACTOR_SOMETHING_OR_OTHER": "2",
|
|
|
|
"SYNAPSE_NOT_CACHE": "BLAH",
|
|
|
|
}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config.read_config(config, config_dir_path="", data_dir_path="")
|
2022-05-11 09:43:22 -04:00
|
|
|
self.config.resize_all_caches()
|
2020-05-11 13:45:23 -04:00
|
|
|
|
2021-10-06 10:47:41 -04:00
|
|
|
self.assertEqual(dict(self.config.cache_factors), {"something_or_other": 2.0})
|
2020-05-11 13:45:23 -04:00
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
def test_config_overrides_environ(self) -> None:
|
2020-05-11 13:45:23 -04:00
|
|
|
"""
|
|
|
|
Individual cache factors defined in the environment will take precedence
|
|
|
|
over those in the config.
|
|
|
|
"""
|
2022-12-16 08:53:28 -05:00
|
|
|
config: JsonDict = {"caches": {"per_cache_factors": {"foo": 2, "bar": 3}}}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config._environ = {
|
2020-05-11 13:45:23 -04:00
|
|
|
"SYNAPSE_CACHE_FACTOR_SOMETHING_OR_OTHER": "2",
|
2022-12-16 08:53:28 -05:00
|
|
|
"SYNAPSE_CACHE_FACTOR_FOO": "1",
|
2020-05-11 13:45:23 -04:00
|
|
|
}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config.read_config(config, config_dir_path="", data_dir_path="")
|
2022-05-11 09:43:22 -04:00
|
|
|
self.config.resize_all_caches()
|
2020-05-11 13:45:23 -04:00
|
|
|
|
|
|
|
self.assertEqual(
|
2021-10-06 10:47:41 -04:00
|
|
|
dict(self.config.cache_factors),
|
2020-05-11 13:45:23 -04:00
|
|
|
{"foo": 1.0, "bar": 3.0, "something_or_other": 2.0},
|
|
|
|
)
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
def test_individual_instantiated_before_config_load(self) -> None:
|
2020-05-11 13:45:23 -04:00
|
|
|
"""
|
|
|
|
If a cache is instantiated before the config is read, it will be given
|
|
|
|
the default cache size in the interim, and then resized once the config
|
|
|
|
is loaded.
|
|
|
|
"""
|
2022-12-16 08:53:28 -05:00
|
|
|
cache: LruCache = LruCache(100)
|
2020-05-11 13:45:23 -04:00
|
|
|
|
|
|
|
add_resizable_cache("foo", cache_resize_callback=cache.set_cache_factor)
|
|
|
|
self.assertEqual(cache.max_size, 50)
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
config: JsonDict = {"caches": {"per_cache_factors": {"foo": 3}}}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config.read_config(config)
|
2022-05-11 09:43:22 -04:00
|
|
|
self.config.resize_all_caches()
|
2020-05-11 13:45:23 -04:00
|
|
|
|
|
|
|
self.assertEqual(cache.max_size, 300)
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
def test_individual_instantiated_after_config_load(self) -> None:
|
2020-05-11 13:45:23 -04:00
|
|
|
"""
|
|
|
|
If a cache is instantiated after the config is read, it will be
|
|
|
|
immediately resized to the correct size given the per_cache_factor if
|
|
|
|
there is one.
|
|
|
|
"""
|
2022-12-16 08:53:28 -05:00
|
|
|
config: JsonDict = {"caches": {"per_cache_factors": {"foo": 2}}}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config.read_config(config, config_dir_path="", data_dir_path="")
|
2022-05-11 09:43:22 -04:00
|
|
|
self.config.resize_all_caches()
|
2020-05-11 13:45:23 -04:00
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
cache: LruCache = LruCache(100)
|
2020-05-11 13:45:23 -04:00
|
|
|
add_resizable_cache("foo", cache_resize_callback=cache.set_cache_factor)
|
|
|
|
self.assertEqual(cache.max_size, 200)
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
def test_global_instantiated_before_config_load(self) -> None:
|
2020-05-11 13:45:23 -04:00
|
|
|
"""
|
|
|
|
If a cache is instantiated before the config is read, it will be given
|
|
|
|
the default cache size in the interim, and then resized to the new
|
|
|
|
default cache size once the config is loaded.
|
|
|
|
"""
|
2022-12-16 08:53:28 -05:00
|
|
|
cache: LruCache = LruCache(100)
|
2020-05-11 13:45:23 -04:00
|
|
|
add_resizable_cache("foo", cache_resize_callback=cache.set_cache_factor)
|
|
|
|
self.assertEqual(cache.max_size, 50)
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
config: JsonDict = {"caches": {"global_factor": 4}}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config.read_config(config, config_dir_path="", data_dir_path="")
|
2022-05-11 09:43:22 -04:00
|
|
|
self.config.resize_all_caches()
|
2020-05-11 13:45:23 -04:00
|
|
|
|
|
|
|
self.assertEqual(cache.max_size, 400)
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
def test_global_instantiated_after_config_load(self) -> None:
|
2020-05-11 13:45:23 -04:00
|
|
|
"""
|
|
|
|
If a cache is instantiated after the config is read, it will be
|
|
|
|
immediately resized to the correct size given the global factor if there
|
|
|
|
is no per-cache factor.
|
|
|
|
"""
|
2022-12-16 08:53:28 -05:00
|
|
|
config: JsonDict = {"caches": {"global_factor": 1.5}}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config.read_config(config, config_dir_path="", data_dir_path="")
|
2022-05-11 09:43:22 -04:00
|
|
|
self.config.resize_all_caches()
|
2020-05-11 13:45:23 -04:00
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
cache: LruCache = LruCache(100)
|
2020-05-11 13:45:23 -04:00
|
|
|
add_resizable_cache("foo", cache_resize_callback=cache.set_cache_factor)
|
|
|
|
self.assertEqual(cache.max_size, 150)
|
2020-05-27 07:04:37 -04:00
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
def test_cache_with_asterisk_in_name(self) -> None:
|
2020-05-27 08:17:01 -04:00
|
|
|
"""Some caches have asterisks in their name, test that they are set correctly."""
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
config: JsonDict = {
|
2020-05-27 08:17:01 -04:00
|
|
|
"caches": {
|
|
|
|
"per_cache_factors": {"*cache_a*": 5, "cache_b": 6, "cache_c": 2}
|
|
|
|
}
|
|
|
|
}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config._environ = {
|
2020-05-27 08:17:01 -04:00
|
|
|
"SYNAPSE_CACHE_FACTOR_CACHE_A": "2",
|
2022-12-16 08:53:28 -05:00
|
|
|
"SYNAPSE_CACHE_FACTOR_CACHE_B": "3",
|
2020-05-27 08:17:01 -04:00
|
|
|
}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config.read_config(config, config_dir_path="", data_dir_path="")
|
2022-05-11 09:43:22 -04:00
|
|
|
self.config.resize_all_caches()
|
2020-05-27 08:17:01 -04:00
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
cache_a: LruCache = LruCache(100)
|
2020-05-27 08:17:01 -04:00
|
|
|
add_resizable_cache("*cache_a*", cache_resize_callback=cache_a.set_cache_factor)
|
|
|
|
self.assertEqual(cache_a.max_size, 200)
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
cache_b: LruCache = LruCache(100)
|
2020-05-27 08:17:01 -04:00
|
|
|
add_resizable_cache("*Cache_b*", cache_resize_callback=cache_b.set_cache_factor)
|
|
|
|
self.assertEqual(cache_b.max_size, 300)
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
cache_c: LruCache = LruCache(100)
|
2020-05-27 08:17:01 -04:00
|
|
|
add_resizable_cache("*cache_c*", cache_resize_callback=cache_c.set_cache_factor)
|
|
|
|
self.assertEqual(cache_c.max_size, 200)
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
def test_apply_cache_factor_from_config(self) -> None:
|
2020-05-27 07:04:37 -04:00
|
|
|
"""Caches can disable applying cache factor updates, mainly used by
|
|
|
|
event cache size.
|
|
|
|
"""
|
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
config: JsonDict = {"caches": {"event_cache_size": "10k"}}
|
2021-10-06 10:47:41 -04:00
|
|
|
self.config.read_config(config, config_dir_path="", data_dir_path="")
|
2022-05-11 09:43:22 -04:00
|
|
|
self.config.resize_all_caches()
|
2020-05-27 07:04:37 -04:00
|
|
|
|
2022-12-16 08:53:28 -05:00
|
|
|
cache: LruCache = LruCache(
|
2021-10-06 10:47:41 -04:00
|
|
|
max_size=self.config.event_cache_size,
|
2020-05-27 07:04:37 -04:00
|
|
|
apply_cache_factor_from_config=False,
|
|
|
|
)
|
|
|
|
add_resizable_cache("event_cache", cache_resize_callback=cache.set_cache_factor)
|
|
|
|
|
|
|
|
self.assertEqual(cache.max_size, 10240)
|