-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdocker-compose-kafka-spark.yml
49 lines (44 loc) · 1.39 KB
/
docker-compose-kafka-spark.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: "3"
services:
zookeeper:
image: 'bitnami/zookeeper:3.7.0-debian-10-r70'
ports:
- '2181:2181'
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
networks:
- document-streaming
kafka:
image: 'bitnami/kafka:2.8.0-debian-10-r42'
ports:
- '9093:9093' #change to 9093 to access external from your windows host
environment:
- KAFKA_BROKER_ID=1
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
- KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP=CLIENT:PLAINTEXT,EXTERNAL:PLAINTEXT #add aditional listener for external
- KAFKA_CFG_LISTENERS=CLIENT://:9092,EXTERNAL://:9093 #9092 will be for other containers, 9093 for your windows client
- KAFKA_CFG_ADVERTISED_LISTENERS=CLIENT://kafka:9092,EXTERNAL://localhost:9093 #9092 will be for other containers, 9093 for your windows client
- KAFKA_INTER_BROKER_LISTENER_NAME=CLIENT
depends_on:
- zookeeper
networks:
- document-streaming
spark:
image: 'jupyter/pyspark-notebook:spark-2'
ports:
- '8888:8888'
- "4040-4080:4040-4080"
volumes:
- ./ApacheSpark/:/home/jovyan/work
networks:
- document-streaming
api-ingest:
image: 'api-ingest'
ports:
- '80:80'
networks:
- document-streaming
networks:
document-streaming:
driver: bridge