TEMPORARY Measure and log test cases
This commit is contained in:
parent
8c60ebf209
commit
adfdd6afe1
|
@ -54,6 +54,7 @@ from synapse.util.caches.descriptors import cached
|
||||||
from synapse.util.caches.lrucache import LruCache
|
from synapse.util.caches.lrucache import LruCache
|
||||||
from synapse.util.cancellation import cancellable
|
from synapse.util.cancellation import cancellable
|
||||||
from synapse.util.iterutils import batch_iter
|
from synapse.util.iterutils import batch_iter
|
||||||
|
from synapse.util.metrics import Measure
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from synapse.server import HomeServer
|
from synapse.server import HomeServer
|
||||||
|
@ -413,12 +414,22 @@ class EventFederationWorkerStore(SignatureWorkerStore, EventsWorkerStore, SQLBas
|
||||||
room = await self.get_room(room_id) # type: ignore[attr-defined]
|
room = await self.get_room(room_id) # type: ignore[attr-defined]
|
||||||
if room["has_auth_chain_index"]:
|
if room["has_auth_chain_index"]:
|
||||||
try:
|
try:
|
||||||
return await self.db_pool.runInteraction(
|
with Measure(self.hs.get_clock(), "rei:get_auth_chain_difference_chains") as m:
|
||||||
"get_auth_chain_difference_chains",
|
r = await self.db_pool.runInteraction(
|
||||||
self._get_auth_chain_difference_using_cover_index_txn,
|
"get_auth_chain_difference_chains",
|
||||||
room_id,
|
self._get_auth_chain_difference_using_cover_index_txn,
|
||||||
state_sets,
|
room_id,
|
||||||
)
|
state_sets,
|
||||||
|
)
|
||||||
|
if m.get_resource_usage().ru_utime > 4.0:
|
||||||
|
logger.info(
|
||||||
|
"REI-ACDC %.2f, ri=%r ss=%r",
|
||||||
|
m.get_resource_usage().ru_utime,
|
||||||
|
room_id,
|
||||||
|
state_sets
|
||||||
|
)
|
||||||
|
return r
|
||||||
|
|
||||||
except _NoChainCoverIndex:
|
except _NoChainCoverIndex:
|
||||||
# For whatever reason we don't actually have a chain cover index
|
# For whatever reason we don't actually have a chain cover index
|
||||||
# for the events in question, so we fall back to the old method.
|
# for the events in question, so we fall back to the old method.
|
||||||
|
|
Loading…
Reference in New Issue