Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Better handling of TCP accept overflow #1638

Merged
merged 3 commits into from
Jan 28, 2019
Merged

Better handling of TCP accept overflow #1638

merged 3 commits into from
Jan 28, 2019

Commits on Jan 25, 2019

  1. Better handling of TCP accept overflow

    Currently when we overflow the number of concurrent TCP sockets
    we wish to service we accept them then immediately disconnect.
    This change causes us to defer accepting new connections until we
    are ready for them, relying instead on the OS socket backlog to
    queue TCP handshakes until full, then stop processing new
    connections when the backlog is full.
    
    We use the I/O threads for scheduling all but one accept, so this
    keeps the same thread affinity.
    rkeene committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    9cdf875 View commit details
    Browse the repository at this point in the history
  2. Formatting

    rkeene committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    3b0b76d View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2019

  1. Configuration menu
    Copy the full SHA
    3744c24 View commit details
    Browse the repository at this point in the history