mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Tweak logging for when a worker waits for its view of a replication stream to catch up. (#15120)Co-authored-by: Sean Quah <8349537+squahtx@users.noreply.github.com>
* Improve logging messages for the 'wait for repl stream' read-after-write consistency feature * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> * Update synapse/replication/tcp/client.py Co-authored-by: Sean Quah <8349537+squahtx@users.noreply.github.com> --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> Co-authored-by: Sean Quah <8349537+squahtx@users.noreply.github.com>
This commit is contained in:
parent
8cede528a8
commit
addd12f16d
1
changelog.d/15120.misc
Normal file
1
changelog.d/15120.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Tweak logging for when a worker waits for its view of a replication stream to catch up.
|
@ -370,15 +370,23 @@ class ReplicationDataHandler:
|
|||||||
# We measure here to get in flight counts and average waiting time.
|
# We measure here to get in flight counts and average waiting time.
|
||||||
with Measure(self._clock, "repl.wait_for_stream_position"):
|
with Measure(self._clock, "repl.wait_for_stream_position"):
|
||||||
logger.info(
|
logger.info(
|
||||||
"Waiting for repl stream %r to reach %s (%s)",
|
"Waiting for repl stream %r to reach %s (%s); currently at: %s",
|
||||||
stream_name,
|
stream_name,
|
||||||
position,
|
position,
|
||||||
instance_name,
|
instance_name,
|
||||||
|
current_position,
|
||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
await make_deferred_yieldable(deferred)
|
await make_deferred_yieldable(deferred)
|
||||||
except defer.TimeoutError:
|
except defer.TimeoutError:
|
||||||
logger.error("Timed out waiting for stream %s", stream_name)
|
logger.error(
|
||||||
|
"Timed out waiting for repl stream %r to reach %s (%s)"
|
||||||
|
"; currently at: %s",
|
||||||
|
stream_name,
|
||||||
|
position,
|
||||||
|
instance_name,
|
||||||
|
self._streams[stream_name].current_token(instance_name),
|
||||||
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
logger.info(
|
logger.info(
|
||||||
|
Loading…
Reference in New Issue
Block a user