Replies: 2 comments
-
/cc @alesj, @gunnarmorling, @ozangunalp, @rquinio |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, in my case problem was not equal keys. Are you sure that your keys in t1 and t2 are equal? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am building a project modeled on this project. The key difference is, I want to output, conditionally, a message using the messages from the joined topics. As opposed to the example project, where an aggregation is performed. (I am struggling to use Serde for JSON messages - a separate battle. So, I have simplified the message structure as follows.)
t1
(KStream
) - a plain text value.t2
(KTable
) - a plain text value separated by a;
.t3
(KStream
) - a CSV string.I am publishing messages using
kafkacat
with the-k
option to set a key e.g.k1
. I can confirm that the messages are present int1
andt2
by runningkafkacat
with the-C
option. The problem I am facing is: I don't see any output int3
. Where do I start looking? What do I look for?This is my
TopologyProducer.java
.Beta Was this translation helpful? Give feedback.
All reactions