-
Notifications
You must be signed in to change notification settings - Fork 100
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
Zero byte read from NFS #189
Comments
…, method file_read
It is not advised to use the the file input on remote filesystems. See these links. There has been a big change in the file input recently. We copied the filewatch library code into the plugin repo and refactored it a lot. The plugin is single threaded and that thread must alternate between discovering files and reading them. There is also the legitimate inclusion of NUL characters to consider. A new setting would need to be introduced. I will consider raising an exception in the |
"It is not advised to use" I translate to "we don't know how to make it work, don't even try", but lot of people did and not because they are masochistic, but for business needs. "Big change and refactoring" arguments are irrelevant in this discussion, sorry, please let me to ignore them. You've completed great job and make lot of changes, I admit, "legitimate inclusion of NUL characters" -- imho: NUL character in text log is quite some special case. If you don't agree with suggested solution in general, "I will consider raising an exception" - may I suggest to SEEK back and return empty string, |
logstash 6.2.4, logstash-input-file (4.0.5), Centos 6.4, NFS v3.2.29;
Config: input file, filter ruby, output file;
Sample - text log files;
Steps to reproduce: NFS Server, several programs writing logs to NFS mounted directory, Logstash with 'input file' from several NFS mounted logs;
When reading input files from NFS,
FileWatch::WatchedFile.file_read(amount)
function uses @file.sysread(amount) to read data,
this sometime produce result buffer partially filled
with '\0' bytes starting with some position.
We could reliably reproduce the problem on NFS v3.
Suggested fix:
Ruby code fix in lib/filewatch/watched_file.rb :
Fixed, in filewatch gem, tested with NFS v.3, running OK under heavy NFS operations
load (actively updated log files from numerous client boxes).
The text was updated successfully, but these errors were encountered: