forked from mysql/mysql-docker
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker_compose.yml
221 lines (213 loc) · 6.92 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
221
version: '3.8'
# RonDB-Docker version: 0.3-SNAPSHOT
services:
mgmd_1:
image: rondb-standalone:21.04.13
container_name: mgmd_1
command: ["ndb_mgmd", "--ndb-nodeid=65", "--initial"]
deploy:
resources:
limits:
cpus: '0.2'
memory: 50M
reservations:
memory: 20M
volumes:
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/config.ini
target: /srv/hops/mysql-cluster/config.ini
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/dataDir_mgmd_1
target: /srv/hops/mysql-cluster/mgmd
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/logDir_mgmd_1
target: /srv/hops/mysql-cluster/log
environment:
- HOST_GROUP_ID=20
ndbd_1:
image: rondb-standalone:21.04.13
container_name: ndbd_1
command: ["ndbmtd", "--ndb-nodeid=1", "--initial", "--ndb-connectstring=mgmd_1:1186"]
healthcheck:
test: ./docker/rondb_standalone/healthcheck.sh mgmd_1:1186 1
interval: 15s
timeout: 15s
retries: 3
start_period: 20s
deploy:
resources:
limits:
cpus: '2'
memory: 3000M
reservations:
memory: 2000M
volumes:
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/dataDir_ndbd_1
target: /srv/hops/mysql-cluster/ndb_data
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/logDir_ndbd_1
target: /srv/hops/mysql-cluster/log
environment:
- HOST_GROUP_ID=20
ndbd_2:
image: rondb-standalone:21.04.13
container_name: ndbd_2
command: ["ndbmtd", "--ndb-nodeid=2", "--initial", "--ndb-connectstring=mgmd_1:1186"]
healthcheck:
test: ./docker/rondb_standalone/healthcheck.sh mgmd_1:1186 2
interval: 15s
timeout: 15s
retries: 3
start_period: 20s
deploy:
resources:
limits:
cpus: '2'
memory: 3000M
reservations:
memory: 2000M
volumes:
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/dataDir_ndbd_2
target: /srv/hops/mysql-cluster/ndb_data
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/logDir_ndbd_2
target: /srv/hops/mysql-cluster/log
environment:
- HOST_GROUP_ID=20
mysqld_1:
image: rondb-standalone:21.04.13
container_name: mysqld_1
command: ["mysqld"]
cap_add:
- SYS_NICE
healthcheck:
test: mysqladmin ping -uroot
interval: 10s
timeout: 2s
retries: 6
start_period: 25s
deploy:
resources:
limits:
cpus: '2'
memory: 1400M
reservations:
memory: 650M
volumes:
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/my.cnf
target: /srv/hops/mysql-cluster/my.cnf
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/dataDir_mysqld_1
target: /srv/hops/mysql-cluster/mysql
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/mysqlFilesDir_mysqld_1
target: /srv/hops/mysql-cluster/mysql-files
ports:
- 3306:3306
environment:
- HOST_GROUP_ID=20
- MYSQL_ALLOW_EMPTY_PASSWORD=true
- MYSQL_BENCH_USER=mysql
- MYSQL_BENCH_PASSWORD=Abc123?e
- MYSQL_INITIALIZE_DB=1
mysqld_2:
image: rondb-standalone:21.04.13
container_name: mysqld_2
command: ["mysqld"]
cap_add:
- SYS_NICE
healthcheck:
test: mysqladmin ping -uroot
interval: 10s
timeout: 2s
retries: 6
start_period: 25s
deploy:
resources:
limits:
cpus: '2'
memory: 1400M
reservations:
memory: 650M
volumes:
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/my.cnf
target: /srv/hops/mysql-cluster/my.cnf
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/dataDir_mysqld_2
target: /srv/hops/mysql-cluster/mysql
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/mysqlFilesDir_mysqld_2
target: /srv/hops/mysql-cluster/mysql-files
ports:
- 3307:3306
environment:
- HOST_GROUP_ID=20
- MYSQL_ALLOW_EMPTY_PASSWORD=true
- MYSQL_BENCH_USER=mysql
- MYSQL_BENCH_PASSWORD=Abc123?e
rest_1:
image: rondb-standalone:21.04.13
container_name: rest_1
command: ["rdrs", "-config=/srv/hops/mysql-cluster/rest_api.json"]
deploy:
resources:
limits:
cpus: '2'
memory: 500M
reservations:
memory: 100M
volumes:
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/rest_api.json
target: /srv/hops/mysql-cluster/rest_api.json
ports:
- 4406:4406
- 5406:5406
environment:
- HOST_GROUP_ID=20
depends_on:
ndbd_1:
condition: service_healthy
ndbd_2:
condition: service_healthy
mysqld_1:
condition: service_healthy
bench_1:
image: rondb-standalone:21.04.13
container_name: bench_1
command: >
bash -c "sleep 5 && bench_run.sh --verbose --default-directory /home/mysql/benchmarks/sysbench_multi "
deploy:
resources:
limits:
cpus: '2'
memory: 500M
reservations:
memory: 100M
volumes:
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/sysbench_single
target: /home/mysql/benchmarks/sysbench_single
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/dbt2_single
target: /home/mysql/benchmarks/dbt2_single
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/sysbench_multi
target: /home/mysql/benchmarks/sysbench_multi
- type: bind
source: <path-to-repo>/autogenerated_files/v210412_m1_g1_r2_my2_ra1_bn1/volumes/dbt2_multi
target: /home/mysql/benchmarks/dbt2_multi
environment:
- HOST_GROUP_ID=20
- MYSQL_BENCH_PASSWORD=Abc123?e
depends_on:
ndbd_1:
condition: service_healthy
ndbd_2:
condition: service_healthy
mysqld_1:
condition: service_healthy