Skip to content

Commit b51a6e9

Browse files
devshawnsimplesteph
authored andcommitted
feat: add KSQL server, resolves #43 (#48)
1 parent 855cc7f commit b51a6e9

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ script:
2525
- ./test.sh zk-multiple-kafka-single.yml 4
2626
- ./test.sh zk-single-kafka-multiple.yml 4
2727
- ./test.sh zk-multiple-kafka-multiple.yml 6
28-
- ./test.sh full-stack.yml 10
28+
- ./test.sh full-stack.yml 11

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ This replicates as well as possible real deployment configurations, where you ha
1717
- Kafka Topics UI: 0.9.4
1818
- Kafka Connect: Confluent 5.1.0
1919
- Kafka Connect UI: 0.9.4
20+
- KSQL Server: Confluent 5.1.0
2021
- Zoonavigator: 0.5.1
2122

2223
# Requirements
@@ -104,6 +105,7 @@ docker-compose -f zk-multiple-kafka-multiple.yml down
104105
- Kafka Topics UI: `$DOCKER_HOST_IP:8000`
105106
- Kafka Connect: `$DOCKER_HOST_IP:8083`
106107
- Kafka Connect UI: `$DOCKER_HOST_IP:8003`
108+
- KSQL Server: `$DOCKER_HOST_IP:8088`
107109
- Zoonavigator Web: `$DOCKER_HOST_IP:8004`
108110

109111

full-stack.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,19 @@ services:
132132
depends_on:
133133
- kafka-connect
134134

135+
ksql-server:
136+
image: confluentinc/cp-ksql-server:5.1.0
137+
hostname: ksql-server
138+
ports:
139+
- "8088:8088"
140+
environment:
141+
KSQL_BOOTSTRAP_SERVERS: PLAINTEXT://kafka1:19092
142+
KSQL_LISTENERS: http://0.0.0.0:8088/
143+
KSQL_KSQL_SERVICE_ID: ksql-server_
144+
depends_on:
145+
- zoo1
146+
- kafka1
147+
135148
zoonavigator-web:
136149
image: elkozmon/zoonavigator-web:0.5.1
137150
ports:

0 commit comments

Comments
 (0)