Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added disable trace propagation option at writer instantiation #24

Merged
merged 3 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.

This project adheres to Semantic Versioning.

## 2.0.5 (Jan 14, 2024)
## 2.1.0 (Jan 23, 2025)

1. Include `DisableTracePropagation` as a WriterOption

## 2.0.5 (Jan 14, 2025)

1. Updated confluent-kafka-go-2.8.0

Expand Down
62 changes: 55 additions & 7 deletions test/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,18 @@ import (
"github.com/stretchr/testify/require"
"github.com/zillow/zfmt"
"github.com/zillow/zkafka/v2"
"go.opentelemetry.io/otel/propagation"
"go.opentelemetry.io/otel/trace/noop"
"golang.org/x/sync/errgroup"
)

// TestKafkaClientsCanReadOwnWritesAndBehaveProperlyAfterRestart will test that a kafka consumer can properly read messages
// written by the kafka producer. It will additionally, confirm that when a group is restarted that it starts off where
// it left off (addressing an off by 1 bug seen with an earlier version)
// it left off (addressing an off by 1 bug seen with an earlier version).
// Finally it'll confirm that otel propagation can be used to manipulate written contents of kafka.Message
// And that options exist to create a zkafka.Writer which disables that propagation. This is done by including a propagator
// which always adds the header "kobe"="bryant". Writer1 uses this propagator, writer2 disables it. Assertions are made
// on the presence of the header.
//
// The following steps are followed
// 1. Create a new consumer group that is reading from the topic
Expand All @@ -43,14 +49,34 @@ func TestKafkaClientsCanReadOwnWritesAndBehaveProperlyAfterRestart(t *testing.T)

groupID := uuid.NewString()

client := zkafka.NewClient(zkafka.Config{BootstrapServers: []string{bootstrapServer}}, zkafka.LoggerOption(stdLogger{}))
client := zkafka.NewClient(
zkafka.Config{BootstrapServers: []string{bootstrapServer}},
zkafka.LoggerOption(stdLogger{}),
zkafka.WithClientTextMapPropagator(fakeTextMapPropagator{
inject: func(ctx context.Context, carrier propagation.TextMapCarrier) {
carrier.Set("kobe", "bryant")
},
}),
zkafka.WithClientTracerProviderOption(noop.NewTracerProvider()),
)
defer func() { require.NoError(t, client.Close()) }()

writer, err := client.Writer(ctx, zkafka.ProducerTopicConfig{
ClientID: fmt.Sprintf("writer-%s-%s", t.Name(), uuid.NewString()),
writer1, err := client.Writer(ctx, zkafka.ProducerTopicConfig{
ClientID: fmt.Sprintf("writer1-%s-%s", t.Name(), uuid.NewString()),
Topic: topic,
Formatter: zfmt.JSONFmt,
})
require.NoError(t, err)

writer2, err := client.Writer(ctx, zkafka.ProducerTopicConfig{
ClientID: fmt.Sprintf("writer2-%s-%s", t.Name(), uuid.NewString()),
Topic: topic,
Formatter: zfmt.JSONFmt,
}, func(settings *zkafka.WriterSettings) {
settings.DisableTracePropagation = true
})
require.NoError(t, err)

consumerTopicConfig := zkafka.ConsumerTopicConfig{
ClientID: fmt.Sprintf("reader-%s-%s", t.Name(), uuid.NewString()),
Topic: topic,
Expand Down Expand Up @@ -111,11 +137,11 @@ func TestKafkaClientsCanReadOwnWritesAndBehaveProperlyAfterRestart(t *testing.T)
}, readResponses)

// write msg1, and msg2
resWrite1, err := writer.Write(ctx, msg1)
resWrite1, err := writer1.Write(ctx, msg1)
require.NoError(t, err)

msg2 := Msg{Val: "2"}
resWrite2, err := writer.Write(ctx, msg2)
resWrite2, err := writer2.Write(ctx, msg2)
require.NoError(t, err)

// reader will send on channel the messages it has read (should just be msg1)
Expand All @@ -125,6 +151,7 @@ func TestKafkaClientsCanReadOwnWritesAndBehaveProperlyAfterRestart(t *testing.T)
require.NoError(t, resp.err)
require.NotNil(t, rmsg1, "expected written message to be read")
require.Equal(t, int(rmsg1.Offset), int(resWrite1.Offset), "expected read offset to match written")
require.Equal(t, "bryant", string(rmsg1.Headers["kobe"]))

gotMsg1 := Msg{}
err = resp.msg.Decode(&gotMsg1)
Expand All @@ -151,6 +178,7 @@ func TestKafkaClientsCanReadOwnWritesAndBehaveProperlyAfterRestart(t *testing.T)

// assert offset is for second message written (no replay of old message)
require.Equal(t, int(rmsg2.Offset), int(resWrite2.Offset), "expected read offset to match written")
require.Empty(t, rmsg2.Headers["kobe"])

gotMsg2 := Msg{}
err = rmsg2.Decode(&gotMsg2)
Expand Down Expand Up @@ -1285,7 +1313,7 @@ func Test_DeadletterClientDoesntCollideWithProducer(t *testing.T) {
if msgCount.Load()%2 == 0 {
return errors.New("random error occurred")
}
_, err := processorWriter.WriteRaw(ctx, nil, msg.Value())
_, err := processorWriter.WriteRaw(ctx, nil, msg.Value(), nil)

return err
})
Expand Down Expand Up @@ -1458,3 +1486,23 @@ type partition struct {
offset int64
topic string
}

type fakeTextMapPropagator struct {
inject func(ctx context.Context, carrier propagation.TextMapCarrier)
}

func (f fakeTextMapPropagator) Inject(ctx context.Context, carrier propagation.TextMapCarrier) {
if f.inject != nil {
f.inject(ctx, carrier)
}
}

func (f fakeTextMapPropagator) Extract(ctx context.Context, carrier propagation.TextMapCarrier) context.Context {
return ctx
}

func (f fakeTextMapPropagator) Fields() []string {
return nil
}

var _ propagation.TextMapPropagator = (*fakeTextMapPropagator)(nil)
9 changes: 8 additions & 1 deletion writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ func newWriter(args writerArgs) (*KWriter, error) {
for _, opt := range args.opts {
opt(&s)
}
if s.DisableTracePropagation {
w.p = nil
}
if s.f != nil {
w.formatter = s.f
}
Expand Down Expand Up @@ -130,6 +133,9 @@ func (w *KWriter) WriteKey(ctx context.Context, key string, value any, opts ...W
func (w *KWriter) WriteRaw(ctx context.Context, key *string, value []byte, opts ...WriteOption) (Response, error) {
kafkaMessage := makeProducerMessageRaw(ctx, w.topicConfig.Topic, key, value)
for _, opt := range opts {
if opt == nil {
continue
}
opt.apply(&kafkaMessage)
}
if w.lifecycle.PreWrite != nil {
Expand Down Expand Up @@ -248,7 +254,8 @@ func (w *KWriter) Close() {
}

type WriterSettings struct {
f kFormatter
f kFormatter
DisableTracePropagation bool
}

// WriterOption is a function that modify the writer configurations
Expand Down
Loading