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

refactor(tcp_server): release state lock before sending packets #464

Merged
merged 1 commit into from
Sep 4, 2022

Conversation

kurnevsky
Copy link
Member

Currently we send tcp packets while holding the state lock. At the
same time we use bounded queues for sending of packets. This means
that a single stuck client can block the whole server until the
timeout happens. This change makes the server release the state lock
before sending any packet.

@coveralls
Copy link

coveralls commented Aug 21, 2022

Pull Request Test Coverage Report for Build 2987516136

  • 106 of 114 (92.98%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.008%) to 95.99%

Changes Missing Coverage Covered Lines Changed/Added Lines %
tox_core/src/relay/server/server.rs 103 111 92.79%
Totals Coverage Status
Change from base Build 2867531116: 0.008%
Covered Lines: 15489
Relevant Lines: 16136

💛 - Coveralls

Copy link
Member

@kpp kpp left a comment

Choose a reason for hiding this comment

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

So basically this is release state lock + some refactoring. Looks good.

Currently we send tcp packets while holding the state lock. At the
same time we use bounded queues for sending of packets. This means
that a single stuck client can block the whole server until the
timeout happens. This change makes the server release the state lock
before sending any packet.
@kurnevsky kurnevsky merged commit e86f233 into master Sep 4, 2022
@kurnevsky kurnevsky deleted the tcp-fix branch September 4, 2022 15:42
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.

3 participants