-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
220 lines (202 loc) · 4.82 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
version: "3.8"
x-base: &base-hregion
image: lucasfs/hbase-armhf:hregion
volumes:
- /mnt/storage/hdfs:/hadoop-data/hdfs/datanode
networks:
- cluster_net
env_file:
- ./hbase.env
networks:
cluster_net:
external: true
name: hbase-net
services:
#####################
# HBASE MASTER #
#####################
hmaster:
image: lucasfs/hbase-armhf:hmaster
hostname: hmaster
networks:
- cluster_net
environment:
- CLUSTER_NAME=test
env_file:
- ./hbase.env
deploy:
&deploy-conf
replicas: 1
endpoint_mode: dnsrr
restart_policy:
condition: on-failure
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-06
volumes:
- /mnt/storage/hdfs:/hadoop-data/hdfs/namenode
ports:
- target: 9870
published: 9870
mode: host
- target: 16010
published: 16010
mode: host
###########################
# HBASE REGIONSERVERS #
###########################
hregion1:
<<: *base-hregion
hostname: hregion1
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion1
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-01
hregion2:
<<: *base-hregion
hostname: hregion2
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion2
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-02
hregion3:
<<: *base-hregion
hostname: hregion3
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion3
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-03
hregion4:
<<: *base-hregion
hostname: hregion4
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion4
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-04
hregion5:
<<: *base-hregion
hostname: hregion5
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion5
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-05
hregion6:
<<: *base-hregion
hostname: hregion6
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion6
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-07
hregion7:
<<: *base-hregion
hostname: hregion7
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion7
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-08
hregion8:
<<: *base-hregion
hostname: hregion8
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion8
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-09
hregion9:
<<: *base-hregion
hostname: hregion9
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion9
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-10
hregion10:
<<: *base-hregion
hostname: hregion10
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion10
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-11
hregion11:
<<: *base-hregion
hostname: hregion11
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion11
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-12
hregion12:
<<: *base-hregion
hostname: hregion12
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion12
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-13
hregion13:
<<: *base-hregion
hostname: hregion13
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion13
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-14
hregion14:
<<: *base-hregion
hostname: hregion14
environment:
- HBASE_CONF_hbase_regionserver_hostname=hregion14
deploy:
<< : *deploy-conf
placement:
max_replicas_per_node: 1
constraints:
- node.hostname == rpi3-15