2020-06-02 12:38:53 -04:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership.
|
|
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
# (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
version: "2.2"
|
2020-12-18 01:50:12 -05:00
|
|
|
|
|
|
|
# IP address ranges:
|
|
|
|
# 172.172.172.2: zookeeper + kafka (dockerfile depends on this)
|
|
|
|
# 172.172.172.3: metadata store
|
|
|
|
# 172.172.172.10-19: overlord
|
|
|
|
# 172.172.172.20-29: coordinator
|
|
|
|
# 172.172.172.30-39: historicals
|
|
|
|
# 172.172.172.40-49: middle managers
|
|
|
|
# 172.172.172.50-59: indexers
|
|
|
|
# 172.172.172.60-69: brokers
|
|
|
|
# 172.172.172.70-79: routers
|
|
|
|
# 172.172.172.101+: hadoop, other supporting infra
|
|
|
|
networks:
|
|
|
|
druid-it-net:
|
|
|
|
name: druid-it-net
|
|
|
|
ipam:
|
|
|
|
config:
|
|
|
|
- subnet: 172.172.172.0/24
|
|
|
|
|
2020-06-02 12:38:53 -04:00
|
|
|
services:
|
2021-03-08 11:12:12 -05:00
|
|
|
### always there supporting infra:
|
2020-12-18 01:50:12 -05:00
|
|
|
druid-zookeeper-kafka:
|
|
|
|
image: druid/cluster
|
|
|
|
container_name: druid-zookeeper-kafka
|
|
|
|
ports:
|
|
|
|
- 2181:2181
|
|
|
|
- 9092:9092
|
|
|
|
- 9093:9093
|
|
|
|
networks:
|
|
|
|
druid-it-net:
|
|
|
|
## Dockerfile depends on this address for this container it seems...
|
|
|
|
ipv4_address: 172.172.172.2
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/zookeeper.conf:/usr/lib/druid/conf/zookeeper.conf
|
|
|
|
- ./service-supervisords/kafka.conf:/usr/lib/druid/conf/kafka.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
|
|
|
|
druid-metadata-storage:
|
|
|
|
image: druid/cluster
|
|
|
|
container_name: druid-metadata-storage
|
|
|
|
ports:
|
2021-03-23 16:18:36 -04:00
|
|
|
- 13306:3306
|
2020-12-18 01:50:12 -05:00
|
|
|
networks:
|
|
|
|
druid-it-net:
|
|
|
|
ipv4_address: 172.172.172.3
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/metadata-storage.conf:/usr/lib/druid/conf/metadata-storage.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
|
2020-06-02 12:38:53 -04:00
|
|
|
|
2020-12-18 01:50:12 -05:00
|
|
|
### overlords
|
|
|
|
druid-overlord:
|
2020-06-02 12:38:53 -04:00
|
|
|
image: druid/cluster
|
2020-12-18 01:50:12 -05:00
|
|
|
container_name: druid-overlord
|
|
|
|
hostname: druid-overlord
|
2020-06-02 12:38:53 -04:00
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.10
|
|
|
|
ports:
|
|
|
|
- 8090:8090
|
|
|
|
- 8290:8290
|
|
|
|
- 5009:5009
|
2020-06-02 12:38:53 -04:00
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
2020-12-18 01:50:12 -05:00
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
2020-06-02 12:38:53 -04:00
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
2020-12-18 01:50:12 -05:00
|
|
|
- ./environment-configs/overlord
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
2020-12-18 01:50:12 -05:00
|
|
|
druid-overlord-two:
|
2020-06-02 12:38:53 -04:00
|
|
|
image: druid/cluster
|
2020-12-18 01:50:12 -05:00
|
|
|
container_name: druid-overlord-two
|
|
|
|
hostname: druid-overlord-two
|
2020-06-02 12:38:53 -04:00
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.11
|
|
|
|
ports:
|
|
|
|
- 8590:8090
|
|
|
|
- 8790:8290
|
|
|
|
- 6009:5009
|
2020-06-02 12:38:53 -04:00
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
2020-12-18 01:50:12 -05:00
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
2020-06-02 12:38:53 -04:00
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
2020-12-18 01:50:12 -05:00
|
|
|
- ./environment-configs/overlord
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
2020-12-18 01:50:12 -05:00
|
|
|
### coordinators
|
|
|
|
druid-coordinator:
|
2020-06-02 12:38:53 -04:00
|
|
|
image: druid/cluster
|
2020-12-18 01:50:12 -05:00
|
|
|
container_name: druid-coordinator
|
|
|
|
hostname: druid-coordinator
|
2020-06-02 12:38:53 -04:00
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.20
|
2020-06-02 12:38:53 -04:00
|
|
|
ports:
|
2020-12-18 01:50:12 -05:00
|
|
|
- 8081:8081
|
|
|
|
- 8281:8281
|
|
|
|
- 5006:5006
|
2020-06-02 12:38:53 -04:00
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
2020-12-18 01:50:12 -05:00
|
|
|
- ./environment-configs/coordinator
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
2020-12-18 01:50:12 -05:00
|
|
|
druid-coordinator-two:
|
2020-06-02 12:38:53 -04:00
|
|
|
image: druid/cluster
|
2020-12-18 01:50:12 -05:00
|
|
|
container_name: druid-coordinator-two
|
|
|
|
hostname: druid-coordinator-two
|
2020-06-02 12:38:53 -04:00
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.21
|
2020-06-02 12:38:53 -04:00
|
|
|
ports:
|
2020-12-18 01:50:12 -05:00
|
|
|
- 8581:8081
|
|
|
|
- 8781:8281
|
|
|
|
- 6006:5006
|
2020-06-02 12:38:53 -04:00
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
2020-12-18 01:50:12 -05:00
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
2020-06-02 12:38:53 -04:00
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
- ./environment-configs/coordinator
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
2020-12-18 01:50:12 -05:00
|
|
|
### historicals
|
2020-06-02 12:38:53 -04:00
|
|
|
druid-historical:
|
|
|
|
image: druid/cluster
|
|
|
|
container_name: druid-historical
|
2020-12-18 01:50:12 -05:00
|
|
|
hostname: druid-historical
|
2020-06-02 12:38:53 -04:00
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.30
|
2020-06-02 12:38:53 -04:00
|
|
|
ports:
|
|
|
|
- 8083:8083
|
|
|
|
- 8283:8283
|
|
|
|
- 5007:5007
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
- ./environment-configs/historical
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
2020-12-18 01:50:12 -05:00
|
|
|
### middle managers
|
2020-06-02 12:38:53 -04:00
|
|
|
druid-middlemanager:
|
|
|
|
image: druid/cluster
|
|
|
|
container_name: druid-middlemanager
|
2020-12-18 01:50:12 -05:00
|
|
|
hostname: druid-middlemanager
|
2020-06-02 12:38:53 -04:00
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.40
|
2020-06-02 12:38:53 -04:00
|
|
|
ports:
|
|
|
|
- 5008:5008
|
|
|
|
- 8091:8091
|
|
|
|
- 8291:8291
|
|
|
|
- 8100:8100
|
|
|
|
- 8101:8101
|
|
|
|
- 8102:8102
|
|
|
|
- 8103:8103
|
|
|
|
- 8104:8104
|
|
|
|
- 8105:8105
|
|
|
|
- 8300:8300
|
|
|
|
- 8301:8301
|
|
|
|
- 8302:8302
|
|
|
|
- 8303:8303
|
|
|
|
- 8304:8304
|
|
|
|
- 8305:8305
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ./../src/test/resources:/resources
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
- ./environment-configs/middlemanager
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
2020-12-18 01:50:12 -05:00
|
|
|
### indexers
|
2020-12-08 19:02:26 -05:00
|
|
|
druid-indexer:
|
|
|
|
image: druid/cluster
|
|
|
|
container_name: druid-indexer
|
2020-12-18 01:50:12 -05:00
|
|
|
hostname: druid-indexer
|
2020-12-08 19:02:26 -05:00
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.50
|
2020-12-08 19:02:26 -05:00
|
|
|
ports:
|
|
|
|
- 5008:5008
|
|
|
|
- 8091:8091
|
|
|
|
- 8291:8291
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ./../src/test/resources:/resources
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
- ./environment-configs/indexer
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-12-08 19:02:26 -05:00
|
|
|
|
2020-12-18 01:50:12 -05:00
|
|
|
### brokers
|
2020-06-02 12:38:53 -04:00
|
|
|
druid-broker:
|
|
|
|
image: druid/cluster
|
2020-12-18 01:50:12 -05:00
|
|
|
hostname: druid-broker
|
2020-06-02 12:38:53 -04:00
|
|
|
container_name: druid-broker
|
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.60
|
2020-06-02 12:38:53 -04:00
|
|
|
ports:
|
|
|
|
- 5005:5005
|
|
|
|
- 8082:8082
|
|
|
|
- 8282:8282
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
- ./environment-configs/broker
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
2020-12-18 01:50:12 -05:00
|
|
|
### routers
|
2020-06-02 12:38:53 -04:00
|
|
|
druid-router:
|
|
|
|
image: druid/cluster
|
|
|
|
container_name: druid-router
|
2020-12-18 01:50:12 -05:00
|
|
|
hostname: druid-router
|
2020-06-02 12:38:53 -04:00
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.70
|
2020-06-02 12:38:53 -04:00
|
|
|
ports:
|
|
|
|
- 5004:5004
|
|
|
|
- 8888:8888
|
|
|
|
- 9088:9088
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
- ./environment-configs/router
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
|
|
|
druid-router-permissive-tls:
|
|
|
|
image: druid/cluster
|
|
|
|
container_name: druid-router-permissive-tls
|
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.71
|
2020-06-02 12:38:53 -04:00
|
|
|
ports:
|
|
|
|
- 5001:5001
|
|
|
|
- 8889:8889
|
|
|
|
- 9089:9089
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
- ./environment-configs/router-permissive-tls
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
|
|
|
druid-router-no-client-auth-tls:
|
|
|
|
image: druid/cluster
|
|
|
|
container_name: druid-router-no-client-auth-tls
|
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.72
|
2020-06-02 12:38:53 -04:00
|
|
|
ports:
|
|
|
|
- 5002:5002
|
|
|
|
- 8890:8890
|
|
|
|
- 9090:9090
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
- ./environment-configs/router-no-client-auth-tls
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2020-06-02 12:38:53 -04:00
|
|
|
|
|
|
|
druid-router-custom-check-tls:
|
|
|
|
image: druid/cluster
|
|
|
|
container_name: druid-router-custom-check-tls
|
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2020-12-18 01:50:12 -05:00
|
|
|
ipv4_address: 172.172.172.73
|
2020-06-02 12:38:53 -04:00
|
|
|
ports:
|
|
|
|
- 5003:5003
|
|
|
|
- 8891:8891
|
|
|
|
- 9091:9091
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./service-supervisords/druid.conf:/usr/lib/druid/conf/druid.conf
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
- ./environment-configs/router-custom-check-tls
|
2022-01-06 02:33:04 -05:00
|
|
|
- ${OVERRIDE_ENV}
|
2021-02-23 16:29:57 -05:00
|
|
|
|
2021-03-08 11:12:12 -05:00
|
|
|
### optional supporting infra
|
2021-10-30 13:16:24 -04:00
|
|
|
|
2021-03-08 11:12:12 -05:00
|
|
|
druid-it-hadoop:
|
2021-10-30 13:16:24 -04:00
|
|
|
## Giving fake version
|
|
|
|
image: druid-it/hadoop:9.9.9
|
2021-03-08 11:12:12 -05:00
|
|
|
container_name: druid-it-hadoop
|
|
|
|
ports:
|
|
|
|
- 2049:2049
|
|
|
|
- 2122:2122
|
|
|
|
- 8020:8020
|
|
|
|
- 8021:8021
|
|
|
|
- 8030:8030
|
|
|
|
- 8031:8031
|
|
|
|
- 8032:8032
|
|
|
|
- 8033:8033
|
|
|
|
- 8040:8040
|
|
|
|
- 8042:8042
|
|
|
|
- 8088:8088
|
|
|
|
- 8443:8443
|
|
|
|
- 9000:9000
|
|
|
|
- 10020:10020
|
|
|
|
- 19888:19888
|
|
|
|
- 34455:34455
|
|
|
|
- 50010:50010
|
|
|
|
- 50020:50020
|
|
|
|
- 50030:50030
|
|
|
|
- 50060:50060
|
|
|
|
- 50070:50070
|
|
|
|
- 50075:50075
|
|
|
|
- 50090:50090
|
|
|
|
- 51111:51111
|
|
|
|
networks:
|
|
|
|
druid-it-net:
|
|
|
|
ipv4_address: 172.172.172.101
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./../src/test/resources:/resources
|
|
|
|
hostname: "druid-it-hadoop"
|
|
|
|
command: "bash -c 'echo Start druid-it-hadoop container... && \
|
|
|
|
/etc/bootstrap.sh && \
|
|
|
|
tail -f /dev/null'"
|
|
|
|
|
|
|
|
|
2021-02-23 16:29:57 -05:00
|
|
|
druid-openldap:
|
|
|
|
image: osixia/openldap:1.4.0
|
|
|
|
container_name: druid-openldap
|
|
|
|
networks:
|
|
|
|
druid-it-net:
|
2021-03-08 11:12:12 -05:00
|
|
|
ipv4_address: 172.172.172.102
|
2021-02-23 16:29:57 -05:00
|
|
|
ports:
|
|
|
|
- 8389:389
|
|
|
|
- 8636:636
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
2021-03-23 16:18:36 -04:00
|
|
|
- ./ldap-configs:/container/service/slapd/assets/config/bootstrap/ldif/custom
|
2021-02-23 16:29:57 -05:00
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
env_file:
|
|
|
|
- ./environment-configs/common
|
|
|
|
command: --copy-service
|
2021-03-08 11:12:12 -05:00
|
|
|
|
|
|
|
|
|
|
|
schema-registry:
|
|
|
|
image: confluentinc/cp-schema-registry:5.5.1
|
|
|
|
container_name: schema-registry
|
|
|
|
ports:
|
|
|
|
- 8085:8085
|
|
|
|
networks:
|
|
|
|
druid-it-net:
|
|
|
|
ipv4_address: 172.172.172.103
|
|
|
|
volumes:
|
|
|
|
- ${HOME}/shared:/shared
|
|
|
|
- ./schema-registry/jaas_config.file:/usr/lib/druid/conf/jaas_config.file
|
|
|
|
- ./schema-registry/password-file:/usr/lib/druid/conf/password-file
|
|
|
|
privileged: true
|
|
|
|
environment:
|
|
|
|
SCHEMA_REGISTRY_HOST_NAME: schema-registry
|
|
|
|
SCHEMA_REGISTRY_LISTENERS: "http://0.0.0.0:8085"
|
|
|
|
SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: druid-zookeeper-kafka:9092
|
|
|
|
SCHEMA_REGISTRY_AUTHENTICATION_METHOD: BASIC
|
|
|
|
SCHEMA_REGISTRY_AUTHENTICATION_REALM: druid
|
|
|
|
SCHEMA_REGISTRY_AUTHENTICATION_ROLES: users
|
2021-05-19 16:56:02 -04:00
|
|
|
SCHEMA_REGISTRY_OPTS: -Djava.security.auth.login.config=/usr/lib/druid/conf/jaas_config.file -Xmx32m
|