Improve logging of replication (#16309)
This commit is contained in:
parent
48387c56f1
commit
ab13fb08bf
|
@ -0,0 +1 @@
|
||||||
|
Small improvements to logging in replication code.
|
|
@ -644,7 +644,7 @@ class ReplicationCommandHandler:
|
||||||
[stream.parse_row(row) for row in rows],
|
[stream.parse_row(row) for row in rows],
|
||||||
)
|
)
|
||||||
|
|
||||||
logger.info("Caught up with stream '%s' to %i", stream_name, cmd.new_token)
|
logger.info("Caught up with stream '%s' to %i", stream_name, cmd.new_token)
|
||||||
|
|
||||||
# We've now caught up to position sent to us, notify handler.
|
# We've now caught up to position sent to us, notify handler.
|
||||||
await self._replication_data_handler.on_position(
|
await self._replication_data_handler.on_position(
|
||||||
|
|
|
@ -191,7 +191,12 @@ class ReplicationStreamer:
|
||||||
|
|
||||||
if updates:
|
if updates:
|
||||||
logger.info(
|
logger.info(
|
||||||
"Streaming: %s -> %s", stream.NAME, updates[-1][0]
|
"Streaming: %s -> %s (limited: %s, updates: %s, max token: %s)",
|
||||||
|
stream.NAME,
|
||||||
|
updates[-1][0],
|
||||||
|
limited,
|
||||||
|
len(updates),
|
||||||
|
current_token,
|
||||||
)
|
)
|
||||||
stream_updates_counter.labels(stream.NAME).inc(len(updates))
|
stream_updates_counter.labels(stream.NAME).inc(len(updates))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue