matrix-org / synapse

Synapse: Matrix homeserver written in Python/Twisted.
https://matrix-org.github.io/synapse
Apache License 2.0
11.82k stars 2.13k forks source link

Add fast path for replication events stream fetch #16580

Closed erikjohnston closed 1 year ago

erikjohnston commented 1 year ago

We can bail early if the from token is greater than or equal to the current token.

This can happen when the ID gen advances the current token for a remote writer past its last write.

Side note: I want to change how we do all this streaming stuff to put the ID generators in charge, which might be easier to grok rather than having abstract "streams" :shrug:

Kinda follows on from #16473