Skip to content
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

Conversation

kubawi
Copy link
Contributor

@kubawi kubawi commented Mar 11, 2025

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.

@kubawi kubawi requested review from raskchanky, banks and mpalmi March 11, 2025 16:20
@kubawi kubawi self-assigned this Mar 11, 2025
@kubawi kubawi requested review from a team as code owners March 11, 2025 16:20
@kubawi kubawi requested a review from rboyer March 11, 2025 16:20
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)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Copy link
Contributor Author

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
schmichael
schmichael previously approved these changes Mar 11, 2025
@kubawi
Copy link
Contributor Author

kubawi commented Mar 12, 2025

I spoke with our support a bit more, they also requested a log entry when we're opening a snapshot. Added in 9c0ae81

@kubawi kubawi merged commit c0dc6a0 into main Mar 18, 2025
12 checks passed
@kubawi kubawi deleted the kubawi/VAULT-29278/add-logging-on-active-node-when-sending-snapshot branch March 18, 2025 17:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants