Skip to content

Commit d7ea2c3

Browse files
committed
fix setting lz4 compression levels
1 parent a5f2b71 commit d7ea2c3

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

pkg/kgo/compression.go

+2-5
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const (
4141
// for that batch.
4242
type CompressionCodec struct {
4343
codec codecType
44-
level int8
44+
level int
4545
}
4646

4747
// NoCompression is a compression option that avoids compression. This can
@@ -68,10 +68,7 @@ func ZstdCompression() CompressionCodec { return CompressionCodec{codecZstd, 0}
6868
//
6969
// If the level is invalid, compressors just use a default level.
7070
func (c CompressionCodec) WithLevel(level int) CompressionCodec {
71-
if level > 127 {
72-
level = 127 // lz4 could theoretically be large, I guess
73-
}
74-
c.level = int8(level)
71+
c.level = level
7572
return c
7673
}
7774

pkg/kgo/compression_test.go

+14
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,22 @@ import (
77
"reflect"
88
"sync"
99
"testing"
10+
11+
"github.com/pierrec/lz4/v4"
1012
)
1113

14+
// Regression test for #778.
15+
func TestCompressionCodecLZ4WithSpecifiedLevel(t *testing.T) {
16+
t.Parallel()
17+
18+
codec := Lz4Compression().WithLevel(512)
19+
w := lz4.NewWriter(new(bytes.Buffer))
20+
err := w.Apply(lz4.CompressionLevelOption(lz4.CompressionLevel(codec.level)))
21+
if err != nil {
22+
t.Errorf("unexpected error: %v", err)
23+
}
24+
}
25+
1226
func TestNewCompressor(t *testing.T) {
1327
t.Parallel()
1428
for i, test := range []struct {

0 commit comments

Comments
 (0)