Skip to content
Snippets Groups Projects
Forked from Maunium / synapse
Source project has a limited visibility.
  • Erik Johnston's avatar
    f112cfe5
    Fix MultiWriteIdGenerator's handling of restarts. (#8374) · f112cfe5
    Erik Johnston authored
    On startup `MultiWriteIdGenerator` fetches the maximum stream ID for
    each instance from the table and uses that as its initial "current
    position" for each writer. This is problematic as a) it involves either
    a scan of events table or an index (neither of which is ideal), and b)
    if rows are being persisted out of order elsewhere while the process
    restarts then using the maximum stream ID is not correct. This could
    theoretically lead to race conditions where e.g. events that are
    persisted out of order are not sent down sync streams.
    
    We fix this by creating a new table that tracks the current positions of
    each writer to the stream, and update it each time we finish persisting
    a new entry. This is a relatively small overhead when persisting events.
    However for the cache invalidation stream this is a much bigger relative
    overhead, so instead we note that for invalidation we don't actually
    care about reliability over restarts (as there's no caches to
    invalidate) and simply don't bother reading and writing to the new table
    in that particular case.
    Fix MultiWriteIdGenerator's handling of restarts. (#8374)
    Erik Johnston authored
    On startup `MultiWriteIdGenerator` fetches the maximum stream ID for
    each instance from the table and uses that as its initial "current
    position" for each writer. This is problematic as a) it involves either
    a scan of events table or an index (neither of which is ideal), and b)
    if rows are being persisted out of order elsewhere while the process
    restarts then using the maximum stream ID is not correct. This could
    theoretically lead to race conditions where e.g. events that are
    persisted out of order are not sent down sync streams.
    
    We fix this by creating a new table that tracks the current positions of
    each writer to the stream, and update it each time we finish persisting
    a new entry. This is a relatively small overhead when persisting events.
    However for the cache invalidation stream this is a much bigger relative
    overhead, so instead we note that for invalidation we don't actually
    care about reliability over restarts (as there's no caches to
    invalidate) and simply don't bother reading and writing to the new table
    in that particular case.