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

Peer conn info changes #83

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Peer conn info changes #83

wants to merge 3 commits into from

Conversation

alexjg
Copy link
Collaborator

@alexjg alexjg commented Mar 13, 2025

This PR adds a RepoHandle::peer_conn_info_changes method which returns a stream of PeerConnectionInfos, which look like this:

pub struct PeerConnectionInfo {
    pub last_received: Option<SystemTime>,
    pub last_sent: Option<SystemTime>,
    pub docs: HashMap<DocumentId, PeerDocState>,
}

The idea here is to allow applications to provide information about the state of a connection both globally and for a particular document in order to aid in debugging.

I've also renamed PeerState -> PeerDocState to try and disambiguate it from the global peer connection state in PeerConnectionInfo and while I was there I moved from using Instant to represent the last sent and received times to SystemTime as SystemTime is intended for comparison between processes whereas Instant is not. @tylerjl I know you were using this API, let me know if those changes are a problem.

alexjg added 3 commits March 13, 2025 11:41
Problem: applications often need to introspect the state of a connection
with a peer in order to debug synchronization issues. For example, if
two users are on a video call and one notices that they have made
changes which the other has not received, they need to determine if the
issue is with the network connection, or a bug in the application, or a
bug in automerge-repo.

Solution: provide Repo::peer_conn_info_changes, which is a stream of
changes to the connection to a particular peer. This includes the last
time we received and sent a message to the peer for any document, and
the last sent/receive for each document, as well as the last acked and
sent heads for each document.

This patch implements this logic very inefficiently, scanning every
document on every change to any document. If the API turns out to be
useful and performance is a problem then we can investigate ways to
optimize this.
@tylerjl
Copy link

tylerjl commented Mar 14, 2025

I think it's good on our end 👍 thanks for the heads-up

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants