Files
akvorado/inlet/kafka/config_test.go
Vincent Bernat 756e4a8fbd */kafka: switch to franz-go
The concurrency of this library is easier to handle than Sarama.
Notably, it is more compatible with the new model of "almost share
nothing" we use for the inlet and the outlet. The lock for workers in
outlet is removed. We can now use sync.Pool to allocate slice of bytes
in inlet.

It may also be more performant.

In the future, we may want to commit only when pushing data to
ClickHouse. However, this does not seem easy when there is a rebalance.
In case of rebalance, we need to do something when a partition is
revoked to avoid duplicating data. For example, we could flush the
current batch to ClickHouse. Have a look at the
`example/mark_offsets/main.go` file in franz-go repository for a
possible approach. In the meantime, we rely on autocommit.

Another contender could be https://github.com/segmentio/kafka-go. Also
see https://github.com/twmb/franz-go/pull/1064.
2025-07-27 21:44:28 +02:00

53 lines
1.4 KiB
Go

// SPDX-FileCopyrightText: 2022 Free Mobile
// SPDX-License-Identifier: AGPL-3.0-only
package kafka
import (
"testing"
"akvorado/common/helpers"
"github.com/twmb/franz-go/pkg/kgo"
)
func TestCompressionCodecUnmarshal(t *testing.T) {
cases := []struct {
Input string
Expected kgo.CompressionCodec
ExpectedError bool
}{
{"none", kgo.NoCompression(), false},
{"zstd", kgo.ZstdCompression(), false},
{"gzip", kgo.GzipCompression(), false},
{"snappy", kgo.SnappyCompression(), false},
{"lz4", kgo.Lz4Compression(), false},
{"unknown", kgo.NoCompression(), true},
}
for _, tc := range cases {
var cmp CompressionCodec
err := cmp.UnmarshalText([]byte(tc.Input))
if err != nil && !tc.ExpectedError {
t.Errorf("UnmarshalText(%q) error:\n%+v", tc.Input, err)
continue
}
if err == nil && tc.ExpectedError {
t.Errorf("UnmarshalText(%q) got %v but expected error", tc.Input, cmp)
continue
}
if !tc.ExpectedError && cmp != CompressionCodec(tc.Expected) {
t.Errorf("UnmarshalText(%q) got %v but expected %v", tc.Input, cmp, tc.Expected)
continue
}
if !tc.ExpectedError && cmp.String() != tc.Input {
t.Errorf("String() got %q but expected %q", cmp.String(), tc.Input)
}
}
}
func TestDefaultConfiguration(t *testing.T) {
if err := helpers.Validate.Struct(DefaultConfiguration()); err != nil {
t.Fatalf("validate.Struct() error:\n%+v", err)
}
}