Last active
January 9, 2020 07:56
-
-
Save miguno/7dee4d17e13f7c0c29a04e58413a9f20 to your computer and use it in GitHub Desktop.
Kafka Streams Example: read topic as table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create KTable from Kafka topic. | |
KTable<String, String> table = builder.table("input-topic", Consumed.with(Serdes.String(), Serdes.String())); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment