File tree 4 files changed +26
-1
lines changed
4 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
1
require "kafka/snappy_codec"
2
2
require "kafka/gzip_codec"
3
+ require "kafka/lz4_codec"
3
4
4
5
module Kafka
5
6
module Compression
@@ -8,6 +9,7 @@ def self.find_codec(name)
8
9
when nil then nil
9
10
when :snappy then SnappyCodec . new
10
11
when :gzip then GzipCodec . new
12
+ when :lz4 then LZ4Codec . new
11
13
else raise "Unknown compression codec #{ name } "
12
14
end
13
15
end
@@ -16,6 +18,7 @@ def self.find_codec_by_id(codec_id)
16
18
case codec_id
17
19
when 1 then GzipCodec . new
18
20
when 2 then SnappyCodec . new
21
+ when 3 then LZ4Codec . new
19
22
else raise "Unknown codec id #{ codec_id } "
20
23
end
21
24
end
Original file line number Diff line number Diff line change
1
+ module Kafka
2
+ class LZ4Codec
3
+ def initialize
4
+ require "extlz4"
5
+ rescue LoadError
6
+ raise LoadError , "using lz4 compression requires adding a dependency on the `extlz4` gem to your Gemfile."
7
+ end
8
+
9
+ def codec_id
10
+ 3
11
+ end
12
+
13
+ def compress ( data )
14
+ LZ4 . encode ( data )
15
+ end
16
+
17
+ def decompress ( data )
18
+ LZ4 . decode ( data )
19
+ end
20
+ end
21
+ end
Original file line number Diff line number Diff line change 1
1
module Kafka
2
- VERSION = "0.5.1 "
2
+ VERSION = "0.5.2 "
3
3
end
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ Gem::Specification.new do |spec|
35
35
spec . add_development_dependency "rspec-benchmark"
36
36
spec . add_development_dependency "activesupport"
37
37
spec . add_development_dependency "snappy"
38
+ spec . add_development_dependency "extlz4"
38
39
spec . add_development_dependency "colored"
39
40
spec . add_development_dependency "rspec_junit_formatter" , "0.2.2"
40
41
spec . add_development_dependency "dogstatsd-ruby" , ">= 3.0.0"
You can’t perform that action at this time.
0 commit comments