Skip to content

Instantly share code, notes, and snippets.

@benstopford
Created August 16, 2017 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benstopford/16376e2eda9e892cedf2aaef01679d14 to your computer and use it in GitHub Desktop.
Save benstopford/16376e2eda9e892cedf2aaef01679d14 to your computer and use it in GitHub Desktop.
//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