You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
state_groups_state size explosion seems related to orphaned state groups
cleanup tools i.e. https://github.com/erikjohnston/synapse-find-unreferenced-state-groups urge you to "properly shutdown" synapse to avoid problems around "unsealed" state groups
manual docker stop -t 120 <synapse_container> did sometimes not terminate without the kill -9 for me
so there is the possibility that container restarts add to the state explosion problem (even though it is only done on whitelist changes).
The text was updated successfully, but these errors were encountered:
Problem Description
docker stop / restart
has a default timeout of10s
before it issues akill -9
to the processpurger.py
currently uses a timeout of30s
state_groups_state
size explosion seems related to orphaned state groupshttps://github.com/erikjohnston/synapse-find-unreferenced-state-groups
urge you to "properly shutdown"synapse
to avoid problems around "unsealed" state groupsdocker stop -t 120 <synapse_container>
did sometimes not terminate without thekill -9
for meThe text was updated successfully, but these errors were encountered: