-
Notifications
You must be signed in to change notification settings - Fork 7
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
Sandbox gfr new jitter #1033
Closed
Closed
Sandbox gfr new jitter #1033
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compare with #1028 (comment)
|
Pull Request Test Coverage Report for Build 6956
💛 - Coveralls |
Currently seeing about 440 Mb/sec per instance in sandbox!! This is about 41% of the index only throughput. |
gfr10598
force-pushed
the
sandbox-gfr-new-jitter
branch
from
December 1, 2021 21:28
e67b25c
to
eeefbac
Compare
Closing old PR - and referencing the notes from this change in #1085 |
Heh - nice cleanup.
Sorry I've lost touch. Would enjoy talking sometime if you like.
…On Thu, Jun 2, 2022 at 3:16 PM Stephen Soltesz ***@***.***> wrote:
Closing old PR - and referencing the notes from this change in #1085
<#1085>
—
Reply to this email directly, view it on GitHub
<#1033 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE7SM6S6ZYY5XSMRZIBOW33VNEB7ZANCNFSM5I6F6LPA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
@gfr10598 then don't be a stranger! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This draft includes a lot of optimized packet decoding logic. Explicit overlay of the raw packet data, and explicit byte swapping of multi-byte fields improves performance by approximate 2X overall. Since a large part of processing is the simple decompression of the pcap data, this 2X improvement represents a much larger improvement in efficiency in the interpretation of the data.
This branch is roughly at parity with the previous work based on the standard gopacket decoders, with maps for sequence numbers, and processing of the TSVal and TSEcn values.
It still needs work on Sack interpretation, inflight computation, better detection of lost packets (lost to PCAP), and general validation.
This change is