-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
201 lines (192 loc) · 5.09 KB
/
Copy pathdocker-compose.yml
File metadata and controls
201 lines (192 loc) · 5.09 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
services:
#############################
# ZOOKEEPER
#############################
zookeeper:
image: confluentinc/cp-zookeeper:7.5.0
container_name: router-zookeeper
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
networks:
- router-net
restart: unless-stopped
############################
# KAFKA
############################
kafka:
image: confluentinc/cp-kafka:7.5.0
container_name: router-kafka
depends_on:
- zookeeper
ports:
- "9092:9092"
- "9093:9093"
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092,PLAINTEXT_HOST://0.0.0.0:9093
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:9093
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "true"
KAFKA_LOG_RETENTION_HOURS: 168 # 7 days
KAFKA_LOG_SEGMENT_BYTES: 1073741824 # 1GB
KAFKA_COMPRESSION_TYPE: gzip
networks:
- router-net
restart: unless-stopped
healthcheck:
test:
[
"CMD",
"kafka-topics",
"--bootstrap-server",
"localhost:9092",
"--list",
]
interval: 30s
timeout: 10s
retries: 5
#############################
# KAFKA UI (Optional - for debugging)
#############################
kafka-ui:
image: provectuslabs/kafka-ui:latest
container_name: router-kafka-ui
depends_on:
- kafka
ports:
- "8080:8080"
environment:
KAFKA_CLUSTERS_0_NAME: router-cluster
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:9092
KAFKA_CLUSTERS_0_ZOOKEEPER: zookeeper:2181
networks:
- router-net
restart: unless-stopped
#############################
# PYTHON PRODUCER
#############################
producer:
build:
context: ./producer
dockerfile: Dockerfile
container_name: router-producer
ports:
- "10514:10514" # Expose TCP port for rsyslog
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
LISTEN_PORT: 10514
networks:
- router-net
depends_on:
kafka:
condition: service_healthy
restart: unless-stopped
#############################
# POSTGRESQL
#############################
postgres:
image: postgres:15-alpine
container_name: router-postgres
environment:
POSTGRES_DB: router_logs
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
POSTGRES_INITDB_ARGS: "--encoding=UTF8 --lc-collate=C --lc-ctype=C"
ports:
- "5432:5432"
volumes:
- ./data/postgres:/var/lib/postgresql/data
- postgres_data:/var/lib/postgresql/data
- ./postgres/init.sql:/docker-entrypoint-initdb.d/init.sql
networks:
- router-net
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -U router -d router_logs"]
interval: 10s
timeout: 5s
retries: 5
#############################
# GRAFANA
#############################
grafana:
image: grafana/grafana:latest
container_name: router-grafana
depends_on:
- postgres
ports:
- "3000:3000"
environment:
GF_SECURITY_ADMIN_USER: admin
GF_SECURITY_ADMIN_PASSWORD: admin
GF_INSTALL_PLUGINS: grafana-clock-panel
GF_USERS_ALLOW_SIGN_UP: "false"
volumes:
- ./grafana/provisioning:/etc/grafana/provisioning
networks:
- router-net
restart: unless-stopped
#############################
# CONSUMER: RAW ARCHIVER
#############################
consumer-raw:
build:
context: ./consumers/raw-archiver
dockerfile: Dockerfile
container_name: router-consumer-raw
depends_on:
kafka:
condition: service_healthy
postgres:
condition: service_healthy
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
POSTGRES_HOST: postgres
POSTGRES_DB: router_logs
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
CONSUMER_GROUP_ID: raw-archiver
networks:
- router-net
restart: unless-stopped
#############################
# CONSUMER: METRICS PROCESSOR
#############################
consumer-metrics:
build:
context: ./consumers/metrics-processor
dockerfile: Dockerfile
container_name: router-consumer-metrics
depends_on:
kafka:
condition: service_healthy
postgres:
condition: service_healthy
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
POSTGRES_HOST: postgres
POSTGRES_DB: router_logs
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
CONSUMER_GROUP_ID: metrics-processor
networks:
- router-net
restart: unless-stopped
#############################
# NETWORKS
#############################
networks:
router-net:
driver: bridge
#############################
# VOLUMES
#############################
volumes:
postgres_data:
driver: local
grafana_data:
driver: local