-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Allow users to configure initial buffer size #37786
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
Merged
bogdandrutu
merged 2 commits into
open-telemetry:main
from
bogdandrutu:add-initial-buffer
Feb 10, 2025
Merged
Allow users to configure initial buffer size #37786
bogdandrutu
merged 2 commits into
open-telemetry:main
from
bogdandrutu:add-initial-buffer
Feb 10, 2025
Conversation
This file contains hidden or 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
70fe2aa
to
acaa6d4
Compare
bogdandrutu
commented
Feb 7, 2025
acaa6d4
to
0ddbb6f
Compare
0ddbb6f
to
ad85a6a
Compare
djaglowski
requested changes
Feb 10, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see any reason why initial buffer size should be fixed for header, or why header buffer size is applicable to the body of the file.
This comment was marked as resolved.
This comment was marked as resolved.
ad85a6a
to
39a098b
Compare
This comment was marked as resolved.
This comment was marked as resolved.
39a098b
to
74d3f72
Compare
@djaglowski PTAL |
Signed-off-by: Bogdan Drutu <[email protected]>
Signed-off-by: Bogdan Drutu <[email protected]>
74d3f72
to
3c40e88
Compare
@djaglowski thanks for the pointers. All updates are in place. |
djaglowski
approved these changes
Feb 10, 2025
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.
Using the filelogreceiver with a system that does not allow for in-progress file reads (holds a lock on the file while writing) and we want to read the entire file (can think of a big proto binary) then decode and construct logs.
Because of this use-case and because of the files being ~5MB we do a lot of re-size of the scanner buffer until we are able to read the whole file/token.
Proposal is to allow customizing the initial buffer size for use-cases like this.