-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a log line on active node when sending snapshot to a follower #636
Add a log line on active node when sending snapshot to a follower #636
Conversation
replication.go
Outdated
@@ -337,6 +337,7 @@ func (r *Raft) sendLatestSnapshot(s *followerReplication) (bool, error) { | |||
peer := s.peer | |||
s.peerLock.RUnlock() | |||
|
|||
r.logger.Info("installing snapshot on", "peer", peer, "id", snapID, "size", req.Size) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r.logger.Info("installing snapshot on", "peer", peer, "id", snapID, "size", req.Size) | |
r.logger.Info("installing snapshot on", "peer", peer.ID, "id", snapID, "size", req.Size) |
Also do you mind adding peer.ID
and snapID
to the other two log lines in this func? It's nice when related log lines have the appropriate context to tie them all together.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good shout, Michael, thanks! Fixed in 9c2797b
…fix - use peer.ID instead of peer as a value in log line
I spoke with our support a bit more, they also requested a log entry when we're opening a snapshot. Added in 9c0ae81 |
This change is motivated by a request from Vault's support to make it easier to understand the progress of replication.
Currently, we do some logging on the standby nodes, but our support would like to be able to see what is happening in the logs earlier, especially in Vault deployments when the active node is slow/overwhelmed or when it has a big database.