Skip to content

Commit

Permalink
Add optimisation to StreamChangeCache (#17130)
Browse files Browse the repository at this point in the history
When there have been lots of changes compared with the number of
entities, we can do a fast(er) path.

Locally I ran some benchmarking, and the comparison seems to give the
best determination of which method we use.
  • Loading branch information
erikjohnston committed May 6, 2024
1 parent 7c9ac01 commit 3e6ee8f
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
1 change: 1 addition & 0 deletions changelog.d/17130.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add optimisation to `StreamChangeCache.get_entities_changed(..)`.
20 changes: 19 additions & 1 deletion synapse/util/caches/stream_change_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def has_entity_changed(self, entity: EntityType, stream_pos: int) -> bool:
return False

def get_entities_changed(
self, entities: Collection[EntityType], stream_pos: int
self, entities: Collection[EntityType], stream_pos: int, _perf_factor: int = 1
) -> Union[Set[EntityType], FrozenSet[EntityType]]:
"""
Returns the subset of the given entities that have had changes after the given position.
Expand All @@ -177,13 +177,31 @@ def get_entities_changed(
Args:
entities: Entities to check for changes.
stream_pos: The stream position to check for changes after.
_perf_factor: Used by unit tests to choose when to use each
optimisation.
Return:
A subset of entities which have changed after the given stream position.
This will be all entities if the given stream position is at or earlier
than the earliest known stream position.
"""
if not self._cache or stream_pos <= self._earliest_known_stream_pos:
self.metrics.inc_misses()
return set(entities)

# If there have been tonnes of changes compared with the number of
# entities, it is faster to check each entities stream ordering
# one-by-one.
max_stream_pos, _ = self._cache.peekitem()
if max_stream_pos - stream_pos > _perf_factor * len(entities):
self.metrics.inc_hits()
return {
entity
for entity in entities
if self._entity_to_key.get(entity, -1) > stream_pos
}

cache_result = self.get_all_entities_changed(stream_pos)
if cache_result.hit:
# We now do an intersection, trying to do so in the most efficient
Expand Down
17 changes: 14 additions & 3 deletions tests/util/test_stream_change_cache.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from parameterized import parameterized

from synapse.util.caches.stream_change_cache import StreamChangeCache

from tests import unittest
Expand Down Expand Up @@ -161,7 +163,8 @@ def test_has_any_entity_changed(self) -> None:
self.assertFalse(cache.has_any_entity_changed(2))
self.assertFalse(cache.has_any_entity_changed(3))

def test_get_entities_changed(self) -> None:
@parameterized.expand([(0,), (1000000000,)])
def test_get_entities_changed(self, perf_factor: int) -> None:
"""
StreamChangeCache.get_entities_changed will return the entities in the
given list that have changed since the provided stream ID. If the
Expand All @@ -178,7 +181,9 @@ def test_get_entities_changed(self) -> None:
# get the ones after that point.
self.assertEqual(
cache.get_entities_changed(
["[email protected]", "[email protected]", "[email protected]"], stream_pos=2
["[email protected]", "[email protected]", "[email protected]"],
stream_pos=2,
_perf_factor=perf_factor,
),
{"[email protected]", "[email protected]"},
)
Expand All @@ -195,6 +200,7 @@ def test_get_entities_changed(self) -> None:
"[email protected]",
],
stream_pos=2,
_perf_factor=perf_factor,
),
{"[email protected]", "[email protected]"},
)
Expand All @@ -210,14 +216,19 @@ def test_get_entities_changed(self) -> None:
"[email protected]",
],
stream_pos=0,
_perf_factor=perf_factor,
),
{"[email protected]", "[email protected]", "[email protected]", "[email protected]"},
)

# Query a subset of the entries mid-way through the stream. We should
# only get back the subset.
self.assertEqual(
cache.get_entities_changed(["[email protected]"], stream_pos=2),
cache.get_entities_changed(
["[email protected]"],
stream_pos=2,
_perf_factor=perf_factor,
),
{"[email protected]"},
)

Expand Down

0 comments on commit 3e6ee8f

Please sign in to comment.