fix: flush accumulated buffer on EOF without trailing newline#976
Open
Vitalymt wants to merge 1 commit into
Open
fix: flush accumulated buffer on EOF without trailing newline#976Vitalymt wants to merge 1 commit into
Vitalymt wants to merge 1 commit into
Conversation
When a file doesn't end with a newline character, the last line is silently dropped. The read loop accumulates data in accumBuf until it finds a '\n', but at EOF the remaining data is saved to job.tail without ever being emitted through controller.In(). If the file is never written to again, that data is lost permanently. Fix: emit accumBuf as a final event before calling processEOF when EOF is reached and the buffer is non-empty. Clear both accumBuf and job.tail afterward to prevent re-emission on file truncation. Fixes ozontech#912
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
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.
Problem
When a file doesn't end with a newline character, the last line is silently dropped.
The read loop in
worker.goaccumulates data inaccumBufuntil it finds a\n. At EOF, the remaining data is saved tojob.tailwithout ever being emitted throughcontroller.In(). If the file is never written to again, that data is lost permanently.Steps to reproduce:
\n:echo -n "hello" > /tmp/test.txtFix
Emit
accumBufas a final event before callingprocessEOFwhen EOF is reached and the buffer is non-empty. Clear bothaccumBufandjob.tailafterward to prevent re-emission on file truncation.Changes:
plugin/input/file/worker.go: +8 lines — flush buffer on EOFplugin/input/file/worker_test.go: updated existing test expectation + added multi-line test caseFixes #912