Adding KStream sample applications

Add sample for the canonical WordCount
Showing how to track group of products
Showing how to implement interactive queries

Fix #41

Update scst versions
Enhance kstream samples
This commit is contained in:
Soby Chacko
2017-09-11 16:33:42 -04:00
committed by Ilayaperumal Gopinathan
parent 30a0c1d734
commit a2fea3a188
38 changed files with 1716 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
version: '2'
services:
zookeeper:
image: wurstmeister/zookeeper
ports:
- "2181:2181"
kafka:
image: wurstmeister/kafka
ports:
- "9092:9092"
environment:
KAFKA_ADVERTISED_HOST_NAME: 192.168.99.100
KAFKA_ADVERTISED_PORT: 9092
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181