Skip to content
Snippets Groups Projects
Unverified Commit 7c2a78bb authored by Eric Eastwood's avatar Eric Eastwood Committed by GitHub
Browse files

Marker events as state - MSC2716 (#12718)

Sending marker events as state now so they are always able to be seen by homeservers (not lost in some timeline gap).

Part of [MSC2716](https://github.com/matrix-org/matrix-spec-proposals/pull/2716)

Complement tests: https://github.com/matrix-org/complement/pull/371

As initially discussed at https://github.com/matrix-org/matrix-spec-proposals/pull/2716#discussion_r782629097 and https://github.com/matrix-org/matrix-spec-proposals/pull/2716#discussion_r876684431

When someone joins a room, process all of the marker events we see in the current state. Marker events should be sent with a unique `state_key` so that they can all resolve in the current state to easily be discovered. Marker events as state

 - If we re-use the same `state_key` (like `""`), then we would have to fetch previous snapshots of state up through time to find all of the marker events. This way we can avoid all of that. This PR was originally doing this but then thought of the smarter way to tackle in an [out of band discussion with @erikjohnston](https://docs.google.com/document/d/1JJDuPfcPNX75fprdTWlxlaKjWOdbdJylbpZ03hzo638/edit#bookmark=id.sm92fqyq7vpp).
 - Also avoids state resolution conflicts where only one of the marker events win

As a homeserver, when we see new marker state, we know there is new history imported somewhere back in time and should process it to fetch the insertion event where the historical messages are and set it as an insertion extremity. This way we know where to backfill more messages when someone asks for scrollback.
parent 28199e93
No related branches found
No related tags found
No related merge requests found
Update [MSC2716](https://github.com/matrix-org/matrix-spec-proposals/pull/2716) implementation to process marker events from the current state to avoid markers being lost in timeline gaps for federated servers which would cause the imported history to be undiscovered.
...@@ -477,7 +477,23 @@ class FederationEventHandler: ...@@ -477,7 +477,23 @@ class FederationEventHandler:
# and discover that we do not have it. # and discover that we do not have it.
event.internal_metadata.proactively_send = False event.internal_metadata.proactively_send = False
return await self.persist_events_and_notify(room_id, [(event, context)]) stream_id_after_persist = await self.persist_events_and_notify(
room_id, [(event, context)]
)
# If we're joining the room again, check if there is new marker
# state indicating that there is new history imported somewhere in
# the DAG. Multiple markers can exist in the current state with
# unique state_keys.
#
# Do this after the state from the remote join was persisted (via
# `persist_events_and_notify`). Otherwise we can run into a
# situation where the create event doesn't exist yet in the
# `current_state_events`
for e in state:
await self._handle_marker_event(origin, e)
return stream_id_after_persist
async def update_state_for_partial_state_event( async def update_state_for_partial_state_event(
self, destination: str, event: EventBase self, destination: str, event: EventBase
...@@ -1230,6 +1246,14 @@ class FederationEventHandler: ...@@ -1230,6 +1246,14 @@ class FederationEventHandler:
# Nothing to retrieve then (invalid marker) # Nothing to retrieve then (invalid marker)
return return
already_seen_insertion_event = await self._store.have_seen_event(
marker_event.room_id, insertion_event_id
)
if already_seen_insertion_event:
# No need to process a marker again if we have already seen the
# insertion event that it was pointing to
return
logger.debug( logger.debug(
"_handle_marker_event: backfilling insertion event %s", insertion_event_id "_handle_marker_event: backfilling insertion event %s", insertion_event_id
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment