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

raft: consolidate all append message sending #134

Closed
wants to merge 3 commits into from

Commits on Mar 11, 2024

  1. tracker: throttle empty probes

    Signed-off-by: Pavel Kalinnikov <[email protected]>
    pav-kv committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    863ff68 View commit details
    Browse the repository at this point in the history
  2. tracker: consolidate MsgApp decisions in Progress

    This commit consolidates all decision-making about sending append
    messages into a single maybeSendAppend method. Previously, the behaviour
    depended on the sendIfEmpty flag which was set/unset depending on the
    circumstances in which the method is called. This is unnecessary because
    the Progress struct contains enough information about the
    leader->follower flow state, so maybeSendAppend can be made stand-alone.
    
    Signed-off-by: Pavel Kalinnikov <[email protected]>
    pav-kv committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    1ce78f5 View commit details
    Browse the repository at this point in the history
  3. tracker: rename the paused probes flow field

    Signed-off-by: Pavel Kalinnikov <[email protected]>
    pav-kv committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    91981c3 View commit details
    Browse the repository at this point in the history