Skip to content

Instantly share code, notes, and snippets.

@miguno
Last active January 9, 2020 07:56
Embed
What would you like to do?
Kafka Streams Example: read topic as table
// 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