mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Limit the size of the HomeServerConfig
cache in trial test runs (#15646)
...to try to control memory usage. `HomeServerConfig`s hold on to many Jinja2 objects, which come out to over 0.5 MiB per config. Over the course of a full test run, the cache grows to ~360 entries. Limit it to 8 entries. Part of #15622. Signed-off-by: Sean Quah <seanq@matrix.org>
This commit is contained in:
parent
a47b2065f0
commit
cc53c96bf8
1
changelog.d/15646.misc
Normal file
1
changelog.d/15646.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Limit the size of the `HomeServerConfig` cache in trial test runs.
|
@ -13,6 +13,7 @@
|
|||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
import functools
|
||||||
import gc
|
import gc
|
||||||
import hashlib
|
import hashlib
|
||||||
import hmac
|
import hmac
|
||||||
@ -150,7 +151,11 @@ def deepcopy_config(config: _TConfig) -> _TConfig:
|
|||||||
return new_config
|
return new_config
|
||||||
|
|
||||||
|
|
||||||
_make_homeserver_config_obj_cache: Dict[str, Union[RootConfig, Config]] = {}
|
@functools.lru_cache(maxsize=8)
|
||||||
|
def _parse_config_dict(config: str) -> RootConfig:
|
||||||
|
config_obj = HomeServerConfig()
|
||||||
|
config_obj.parse_config_dict(json.loads(config), "", "")
|
||||||
|
return config_obj
|
||||||
|
|
||||||
|
|
||||||
def make_homeserver_config_obj(config: Dict[str, Any]) -> RootConfig:
|
def make_homeserver_config_obj(config: Dict[str, Any]) -> RootConfig:
|
||||||
@ -164,21 +169,7 @@ def make_homeserver_config_obj(config: Dict[str, Any]) -> RootConfig:
|
|||||||
but it keeps a cache of `HomeServerConfig` instances and deepcopies them as needed,
|
but it keeps a cache of `HomeServerConfig` instances and deepcopies them as needed,
|
||||||
to avoid validating the whole configuration every time.
|
to avoid validating the whole configuration every time.
|
||||||
"""
|
"""
|
||||||
cache_key = json.dumps(config)
|
config_obj = _parse_config_dict(json.dumps(config, sort_keys=True))
|
||||||
|
|
||||||
if cache_key in _make_homeserver_config_obj_cache:
|
|
||||||
# Cache hit: reuse the existing instance
|
|
||||||
config_obj = _make_homeserver_config_obj_cache[cache_key]
|
|
||||||
else:
|
|
||||||
# Cache miss; create the actual instance
|
|
||||||
config_obj = HomeServerConfig()
|
|
||||||
config_obj.parse_config_dict(config, "", "")
|
|
||||||
|
|
||||||
# Add to the cache
|
|
||||||
_make_homeserver_config_obj_cache[cache_key] = config_obj
|
|
||||||
|
|
||||||
assert isinstance(config_obj, RootConfig)
|
|
||||||
|
|
||||||
return deepcopy_config(config_obj)
|
return deepcopy_config(config_obj)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user