Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Return maximal current token
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Oct 17, 2023
1 parent 0a12cc0 commit 1c4a226
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions synapse/storage/util/id_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,11 +726,29 @@ def get_current_token_for_writer(self, instance_name: str) -> int:
instance_name, self._persisted_upto_position
)

# We also ensure that we always return at least the
# `persisted_upto_position` for ourselves, so that when we notify
# other workers about our position we give them the max valid value
# here so that nothing waits for us to advance.
max_pos = max(
self._current_positions.values(), default=self._persisted_upto_position
)

# We want to return the maximum "current token" that we can for a
# writer, this helps ensure that streams progress as fast as
# possible.
pos = max(pos, self._persisted_upto_position)

if (
self._instance_name == instance_name
and self._in_flight_fetches
and self._unfinished_ids
):
# For our own instance when there's nothing in flight, it's safe
# to advance to the maximum persisted position we've seen (as we
# know that any new tokens we request will be greater).
max_pos = max(
self._current_positions.values(),
default=self._persisted_upto_position,
)
pos = max(pos, max_pos)

return self._return_factor * pos

def get_minimal_local_current_token(self) -> int:
Expand Down

0 comments on commit 1c4a226

Please sign in to comment.