Class: Fluent::Plugin::S3Output::GzipCompressor

Inherits:
Compressor
  • Object
show all
Defined in:
lib/fluent/plugin/out_s3.rb

Instance Attribute Summary

Attributes inherited from Compressor

#buffer_type, #log

Instance Method Summary collapse

Methods inherited from Compressor

#configure, #initialize

Constructor Details

This class inherits a constructor from Fluent::Plugin::S3Output::Compressor

Instance Method Details

#compress(chunk, tmp) ⇒ Object



495
496
497
498
499
500
501
# File 'lib/fluent/plugin/out_s3.rb', line 495

def compress(chunk, tmp)
  w = Zlib::GzipWriter.new(tmp)
  chunk.write_to(w)
  w.finish
ensure
  w.finish rescue nil
end

#content_typeObject



491
492
493
# File 'lib/fluent/plugin/out_s3.rb', line 491

def content_type
  'application/x-gzip'.freeze
end

#extObject



487
488
489
# File 'lib/fluent/plugin/out_s3.rb', line 487

def ext
  'gz'.freeze
end