As there is no "to()" method for KTable so do we need to always convert it to KStream before sending any message to a topic? Or how can we store a KTable in our topic?
Asked
Active
Viewed 2,366 times
2 Answers
5
Yes, in order to materialize a KTable
to a topic, you're required to convert it to a regular stream (instead of a changelog stream) via table.toStream().to("myTopic")
.

ck1
- 5,243
- 1
- 21
- 25