You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are probably other good reasons for doing this, but here's the problem I've encountered...
The logstash-input-s3 plugin relies on Ruby's embedded ZLib to decompress GZipped log files, however AWS stores these files in a concatenated form that can't be read by the normal Zlib::GzipReader.new() method. Thankfully a new Zlib::GzipReader.zcat() method was added that can read this type of file, however it is only available in Ruby 3.
Without this it is impossible to stream GZipped log files from S3, so it would be very helpful if JRuby could either be upgraded to a version that includes this feature or if another library could be included as a workaround.
The text was updated successfully, but these errors were encountered:
There are probably other good reasons for doing this, but here's the problem I've encountered...
The logstash-input-s3 plugin relies on Ruby's embedded ZLib to decompress GZipped log files, however AWS stores these files in a concatenated form that can't be read by the normal
Zlib::GzipReader.new()
method. Thankfully a newZlib::GzipReader.zcat()
method was added that can read this type of file, however it is only available in Ruby 3.Without this it is impossible to stream GZipped log files from S3, so it would be very helpful if JRuby could either be upgraded to a version that includes this feature or if another library could be included as a workaround.
The text was updated successfully, but these errors were encountered: