Created
August 16, 2017 21:28
-
-
Save benstopford/16376e2eda9e892cedf2aaef01679d14 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
//Inside the Kafka Streams thread (extending the example above) push the enriched orders into a topic of their own. | |
enrichedOrders.through(“enriched-orders-topic”); | |
//Now build a table from that topic, which will be pushed into the “enriched-orders-store” | |
KTable enrichedOrdersTable = builder.table(..., “enriched-orders-topic”, “enriched-orders-store”); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment