-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
182 lines (170 loc) · 6.18 KB
/
docker-compose.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
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
version: '3.8'
services:
# Apache Flink Components:
sql-client:
container_name: sql-client
build:
context: sql-client
dockerfile: Dockerfile
depends_on:
- broker
- jobmanager
environment:
FLINK_JOBMANAGER_HOST: jobmanager
KAFKA_BOOTSTRAP: broker
jobmanager:
image: flink:${FLINK_TAG}
container_name: jobmanager
build:
context: jobmanager
dockerfile: Dockerfile
ports:
- "8081:8081"
command: jobmanager
environment:
- |
FLINK_PROPERTIES=
jobmanager.rpc.address: jobmanager
taskmanager:
image: flink:${FLINK_TAG}
container_name: taskmanager
depends_on:
- jobmanager
command: taskmanager
environment:
- |
FLINK_PROPERTIES=
jobmanager.rpc.address: jobmanager
taskmanager.numberOfTaskSlots: 10
# Confluent Platform Components below:
broker:
container_name: broker
hostname: broker
image: confluentinc/cp-server:${CP_TAG}
ports:
- "9101:9101"
- "9092:9092"
- "8090:8090"
restart: always
environment:
KAFKA_NODE_ID: 1
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: 'CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT'
KAFKA_ADVERTISED_LISTENERS: 'PLAINTEXT://broker:29092,PLAINTEXT_HOST://localhost:9092'
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
KAFKA_DEFAULT_REPLICATION_FACTOR: 1
KAFKA_DEFAULT_MIN_ISR: 1
KAFKA_CONFLUENT_LICENSE_TOPIC_REPLICATION_FACTOR: 1
KAFKA_CONFLUENT_CLUSTER_LINK_METADATA_TOPIC_REPLICATION_FACTOR: 1
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_CONFLUENT_REPORTERS_TELEMETRY_AUTO_ENABLE: 'false'
KAFKA_CONFLUENT_BALANCER_ENABLE: 'false'
KAFKA_JMX_PORT: 9101
KAFKA_JMX_HOSTNAME: localhost
KAFKA_CONFLUENT_HTTP_SERVER_LISTENERS: "http://0.0.0.0:8090"
KAFKA_CONFLUENT_SCHEMA_REGISTRY_URL: "http://schemaregistry:8084"
KAFKA_PROCESS_ROLES: 'broker,controller'
KAFKA_CONTROLLER_QUORUM_VOTERS: '1@broker:29093'
KAFKA_LISTENERS: 'PLAINTEXT://broker:29092,CONTROLLER://broker:29093,PLAINTEXT_HOST://0.0.0.0:9092'
KAFKA_INTER_BROKER_LISTENER_NAME: 'PLAINTEXT'
KAFKA_CONTROLLER_LISTENER_NAMES: 'CONTROLLER'
KAFKA_LOG_DIRS: '/tmp/kraft-combined-logs'
CLUSTER_ID: 'ZWe3nnZwTrKSM0aM2doAxQ'
# Metrics Reporting
KAFKA_METRIC_REPORTERS: io.confluent.metrics.reporter.ConfluentMetricsReporter
KAFKA_CONFLUENT_METRICS_REPORTER_BOOTSTRAP_SERVERS: broker:29092
# Override Replication Factors for internal topics
KAFKA_CONFLUENT_METRICS_REPORTER_TOPIC_REPLICAS: 1
KAFKA_CONFLUENT_METRICS_REPORTER_TOPIC_REPLICATION_FACTOR: 1
KAFKA_CONFLUENT_METRICS_ENABLE: 'true'
control-center:
container_name: control-center
hostname: control-center
image: confluentinc/cp-enterprise-control-center:${CP_TAG}
depends_on:
- broker
- schemaregistry
ports:
- "9021:9021"
restart: always
environment:
CONTROL_CENTER_BOOTSTRAP_SERVERS: broker:29092
CONTROL_CENTER_SCHEMA_REGISTRY_URL: http://schemaregistry:8084
CONTROL_CENTER_CONNECT_CONNECT-DEFAULT_CLUSTER: connect:8083
CONTROL_CENTER_STREAMS_NUM_STREAM_THREADS: "5"
CONTROL_CENTER_REPLICATION_FACTOR: 1
CONTROL_CENTER_INTERNAL_TOPICS_PARTITIONS: 1
CONTROL_CENTER_MONITORING_INTERCEPTOR_TOPIC_PARTITIONS: 1
CONFLUENT_METRICS_TOPIC_REPLICATION: 1
PORT: 9021
restproxy:
container_name: restproxy
hostname: restproxy
image: confluentinc/cp-kafka-rest:${CP_TAG}
depends_on:
- broker
- schemaregistry
ports:
- 8082:8082
restart: always
environment:
KAFKA_REST_BOOTSTRAP_SERVERS: broker:29092
KAFKA_REST_LISTENERS: http://0.0.0.0:8082
KAFKA_REST_SCHEMA_REGISTRY_URL: http://schemaregistry:8084
schemaregistry:
container_name: schemaregistry
hostname: schemaregistry
image: confluentinc/cp-schema-registry:${CP_TAG}
depends_on:
- broker
ports:
- '8084:8084'
restart: always
environment:
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: broker:29092
SCHEMA_REGISTRY_LISTENERS: http://0.0.0.0:8084
connect:
container_name: connect
hostname: connect
image: confluentinc/cp-enterprise-replicator:${CP_TAG}
ports:
- '8083:8083'
depends_on:
- broker
- schemaregistry
restart: always
environment:
CONNECT_BOOTSTRAP_SERVERS: broker:29092
CONNECT_LISTENERS: http://connect:8083
CONNECT_REST_PORT: 8083
CONNECT_GROUP_ID: "source"
CONNECT_PRODUCER_INTERCEPTOR_CLASSES: "io.confluent.monitoring.clients.interceptor.MonitoringProducerInterceptor"
CONNECT_PRODUCER_CONFLUENT_MONITORING_INTERCEPTOR_BOOTSTRAP_SERVERS: broker:29092
CONNECT_CONSUMER_INTERCEPTOR_CLASSES: "io.confluent.monitoring.clients.interceptor.MonitoringConsumerInterceptor"
CONNECT_CONSUMER_CONFLUENT_MONITORING_INTERCEPTOR_BOOTSTRAP_SERVERS: broker:29092
CONNECT_CONFLUENT_METADATA_BOOTSTRAP_SERVER_URLS: http://broker:8090
# Connect Custom Topics
CONNECT_STATUS_STORAGE_REPLICATION_FACTOR: '1'
CONNECT_STATUS_STORAGE_TOPIC: connect-status
CONNECT_CONFIG_STORAGE_REPLICATION_FACTOR: '1'
CONNECT_CONFIG_STORAGE_TOPIC: connect-configs
CONNECT_OFFSET_STORAGE_REPLICATION_FACTOR: '1'
CONNECT_OFFSET_STORAGE_TOPIC: connect-offsets
CONNECT_KEY_CONVERTER: io.confluent.connect.avro.AvroConverter
CONNECT_KEY_CONVERTER_SCHEMA_REGISTRY_URL: http://schemaregistry:8084
CONNECT_VALUE_CONVERTER: io.confluent.connect.avro.AvroConverter
CONNECT_VALUE_CONVERTER_SCHEMA_REGISTRY_URL: http://schemaregistry:8084
CONNECT_CONNECTOR_CLIENT_CONFIG_OVERRIDE_POLICY: All
CONNECT_PLUGIN_PATH: /usr/share/java,/usr/share/confluent-hub-components,/data/connect-jars
CONNECT_REST_ADVERTISED_HOST_NAME: connect
command:
- bash
- -c
- |
echo "Installing Connector"
confluent-hub install --no-prompt confluentinc/kafka-connect-datagen:0.6.3
#
echo "Launching Kafka Connect worker"
/etc/confluent/docker/run &
#
sleep infinity