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
here: if we decide that the new membership event is a duplicate, we throw it away; however, by that point we have already created a state group for it.
These state groups show up in the database with entries in state_groups and state_groups_state, but the event referred to in state_groups is not present in events or anywhere else.
I think this is probably responsible for quite a lot of the state group blowup on IRC-bridged rooms on matrix.org.
The text was updated successfully, but these errors were encountered:
…ups. (#17164)
We try and deduplicate in two places: 1) really early on, and 2) just
before we persist the event. The first case was broken due to it
occuring before the profile information was added, and so it thought the
event contents were different.
The second case did catch it and handle it correctly, however doing so
creates a redundant state group leading to bloat.
Fixes#3791
H-Shay
pushed a commit
to H-Shay/hq_synapse
that referenced
this issue
May 31, 2024
…ups. (element-hq#17164)
We try and deduplicate in two places: 1) really early on, and 2) just
before we persist the event. The first case was broken due to it
occuring before the profile information was added, and so it thought the
event contents were different.
The second case did catch it and handle it correctly, however doing so
creates a redundant state group leading to bloat.
Fixeselement-hq#3791
Mic92
pushed a commit
to Mic92/synapse
that referenced
this issue
Jun 14, 2024
…ups. (element-hq#17164)
We try and deduplicate in two places: 1) really early on, and 2) just
before we persist the event. The first case was broken due to it
occuring before the profile information was added, and so it thought the
event contents were different.
The second case did catch it and handle it correctly, however doing so
creates a redundant state group leading to bloat.
Fixeselement-hq#3791
This issue has been migrated from #3791.
here: if we decide that the new membership event is a duplicate, we throw it away; however, by that point we have already created a state group for it.
These state groups show up in the database with entries in
state_groups
andstate_groups_state
, but the event referred to instate_groups
is not present inevents
or anywhere else.I think this is probably responsible for quite a lot of the state group blowup on IRC-bridged rooms on matrix.org.
The text was updated successfully, but these errors were encountered: