You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the first time that I start the app, there is an exception that internally created topic already exists. On the next run the program starts without exception
How to reproduce
var builder = new StreamBuilder();
builder.Stream<string, MeasuredValue, StringSerDes, Proto<MeasuredValue>>(KTopicValues)
.SelectKey((key, value) => $"{key}-{value.Read}")
.ToTable(InMemory.As<string, MeasuredValue>("values.store").WithValueSerdes<Proto<MeasuredValue>>());
var topology = builder.Build();
using var stream = new KafkaStream(topology, _config);
await stream.StartAsync(stoppingToken);
Description
I created a simple stream app that:
On the first time that I start the app, there is an exception that internally created topic already exists. On the next run the program starts without exception
How to reproduce
result:
Checklist
Please provide the following information:
The text was updated successfully, but these errors were encountered: