-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathdb-recovery.js
578 lines (482 loc) · 19.5 KB
/
db-recovery.js
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
var SQLDB = "sqldb",
AUTH_ERROR_CODE = 701,
UNABLE_RESTORE_CODE = 98,
FAILED_CLUSTER_CODE = 97,
RESTORE_SUCCESS = 201,
envName = "${env.name}",
exec = getParam('exec', ''),
isEvent = getParam('event', false),
failedNodes = [],
isMasterFailed = false,
GALERA = "galera",
PRIMARY = "primary",
SECONDARY = "secondary",
FAILED = "failed",
FAILED_UPPER_CASE = "FAILED",
SUCCESS = "success",
WARNING = "warning",
MASTER = "master",
SLAVE = "slave",
ROOT = "root",
DOWN = "down",
UP = "up",
OK = "ok",
isRestore = false,
envInfo,
nodeGroups,
donorIps = {},
primaryDonorIp = "",
scenario = "",
scheme,
item,
resp;
if (!exec) isRestore = true;
exec = exec || " --diagnostic";
resp = getNodeGroups();
if (resp.result != 0) return resp;
nodeGroups = resp.nodeGroups;
for (var i = 0, n = nodeGroups.length; i < n; i++) {
if (nodeGroups[i].name == SQLDB && nodeGroups[i].cluster && nodeGroups[i].cluster.enabled) {
if (nodeGroups[i].cluster.settings) {
scheme = nodeGroups[i].cluster.settings.scheme;
if (scheme == SLAVE) scheme = SECONDARY;
if (scheme == MASTER) scheme = PRIMARY;
break;
}
}
}
api.marketplace.console.WriteLog("start-> ");
api.marketplace.console.WriteLog("isRestore-> " + isRestore);
api.marketplace.console.WriteLog("scheme-> " + scheme);
resp = execRecovery();
if (resp.result != 0) return resp;
resp = parseOut(resp.responses, true);
if (isRestore) {
if (resp.result == AUTH_ERROR_CODE) return resp;
if (resp.result == UNABLE_RESTORE_CODE || resp.result == FAILED_CLUSTER_CODE) return resp;
if (isMasterFailed) {
resp = getSlavesOnly();
if (resp.result != 0) return resp;
failedNodes = resp.nodes;
scenario = " --scenario restore_secondary_from_primary";
}
api.marketplace.console.WriteLog("failedNodes-> " + failedNodes);
if (!failedNodes.length) {
return {
result: !isRestore ? 200 : RESTORE_SUCCESS,
type: SUCCESS
};
}
if (!donorIps[scheme]) { //!scenario ||
return {
result: UNABLE_RESTORE_CODE,
type: WARNING
}
}
for (var k = 0, l = failedNodes.length; k < l; k++) {
resp = getNodeIdByIp(failedNodes[k].address);
if (resp.result != 0) return resp;
resp = execRecovery(failedNodes[k].scenario, donorIps[scheme], resp.nodeid);
if (resp.result != 0) return resp;
resp = parseOut(resp.responses, false);
if (resp.result == UNABLE_RESTORE_CODE || resp.result == FAILED_CLUSTER_CODE) return resp;
}
} else {
if (isEvent) {
resp.result = 0;
resp.isDiagnosticsResultOk = false;
}
return resp;
}
function parseOut(data, restoreMaster) {
var resp,
nodeid,
statusesUp = false,
clusterFailed = false,
primaryMasterAddress = "",
primaryEnabledService = "",
failedPrimary = [];
if (scheme == SECONDARY && restoreMaster) {
failedNodes = [];
failedPrimary = [];
donorIps = {};
}
if (data.length) {
for (var i = 0, n = data.length; i < n; i++) {
nodeid = data[i].nodeid;
if (data[i] && data[i].out) {
item = data[i].out;
api.marketplace.console.WriteLog("item->" + item);
item = JSON.parse(item);
if (item.result == AUTH_ERROR_CODE) {
return {
type: WARNING,
message: item.error,
result: AUTH_ERROR_CODE
};
}
if (!item.node_type) {
clusterFailed = true;
if (!isRestore) {
resp = setFailedDisplayNode(item.address);
if (resp.result != 0) return resp;
continue;
}
}
if (item.result == 0) {
switch (String(scheme)) {
case GALERA:
if ((item.service_status == UP || item.status == OK) && item.galera_myisam != OK) {
return {
type: WARNING,
message: "There are MyISAM tables in the Galera Cluster. These tables should be converted in InnoDB type"
}
}
if (item.service_status == DOWN || item.status == FAILED) {
scenario = " --scenario restore_galera";
if (!donorIps[scheme]) {
donorIps[GALERA] = GALERA;
}
failedNodes.push({
address: item.address,
scenario: scenario
});
if (!isRestore) {
resp = setFailedDisplayNode(item.address);
if (resp.result != 0) return resp;
}
}
// if (!isRestore && failedNodes.length) {
// return {
// result: FAILED_CLUSTER_CODE,
// type: SUCCESS
// };
// }
if (item.service_status == UP && item.status == OK) {
resp = setFailedDisplayNode(item.address, true);
if (resp.result != 0) return resp;
}
break;
case PRIMARY:
if (item.service_status == DOWN || item.status == FAILED) {
if (item.node_type == SECONDARY) {
scenario = " --scenario restore_secondary_from_primary";
} else {
scenario = " --scenario restore_primary_from_primary";
}
if (item.service_status == UP) {
if (!donorIps[scheme]) {
donorIps[PRIMARY] = item.address;
}
if (item.address == "${nodes.sqldb.master.address}") {
primaryMasterAddress = item.address;
}
}
if (!isRestore) {
resp = setFailedDisplayNode(item.address);
if (resp.result != 0) return resp;
}
if (!donorIps[scheme] && item.service_status == UP) {
donorIps[PRIMARY] = item.address;
}
if (item.status == FAILED) {
if (item.node_type == PRIMARY) {
failedPrimary.push({
address: item.address,
scenario: scenario
});
restoreMaster = true;
} else {
failedNodes.push({
address: item.address,
scenario: scenario
});
}
}
// if (!isRestore) {
// return {
// result: FAILED_CLUSTER_CODE,
// type: SUCCESS
// };
// }
restoreMaster = true;
}
if (item.service_status == UP && item.status == OK) {
if (item.node_type == PRIMARY) {
primaryMasterAddress = item.address;
donorIps[PRIMARY] = item.address;
}
resp = setFailedDisplayNode(item.address, true);
if (resp.result != 0) return resp;
}
break;
case SECONDARY:
if (item.service_status == DOWN || item.status == FAILED) {
if (!isRestore) {
resp = setFailedDisplayNode(item.address);
if (resp.result != 0) return resp;
}
// if (!isRestore) {
// return {
// result: FAILED_CLUSTER_CODE,
// type: SUCCESS
// };
// }
if (item.service_status == DOWN && item.status == FAILED) {
if (item.node_type == PRIMARY) {
scenario = " --scenario restore_primary_from_secondary";
failedPrimary.push({
address: item.address,
scenario: scenario
});
isMasterFailed = true;
} else {
scenario = " --scenario restore_secondary_from_primary";
failedNodes.push({
address: item.address,
scenario: scenario
});
}
} else if (item.node_type == PRIMARY) {
scenario = " --scenario restore_primary_from_secondary";
failedPrimary.push({
address: item.address,
scenario: scenario
});
isMasterFailed = true;
} else if (item.status == FAILED) {
scenario = " --scenario restore_secondary_from_primary";
failedNodes.push({
address: item.address,
scenario: scenario
});
}
}
if (item.node_type == PRIMARY) {
if (item.service_status == UP && item.status == OK) {
primaryDonorIp = item.address;
}
}
if (item.service_status == UP && item.status == OK) {
donorIps[SECONDARY] = item.address;
statusesUp = true;
resp = setFailedDisplayNode(item.address, true);
if (resp.result != 0) return resp;
} else if (!statusesUp && item.node_type == SECONDARY && item.service_status == UP) {
donorIps[SECONDARY] = item.address;
}
if (primaryDonorIp) { //!donorIps[scheme]
donorIps[scheme] = primaryDonorIp;
continue;
}
break;
}
} else {
return {
result: isRestore ? UNABLE_RESTORE_CODE : FAILED_CLUSTER_CODE,
type: WARNING
};
}
}
}
if (!isRestore && (failedNodes.length || failedPrimary.length)) {
return {
result: FAILED_CLUSTER_CODE,
type: WARNING
};
}
if (!failedNodes.length && failedPrimary.length) {
failedNodes = failedPrimary;
}
if ((!scenario || !donorIps[scheme]) && failedNodes.length) {
return {
result: UNABLE_RESTORE_CODE,
type: WARNING
}
}
api.marketplace.console.WriteLog("failedPrimary-> "+ failedPrimary);
api.marketplace.console.WriteLog("failedNodes-> "+ failedNodes);
api.marketplace.console.WriteLog("primaryMasterAddress-> "+ primaryMasterAddress);
api.marketplace.console.WriteLog("donorIps-> "+ donorIps);
if (isRestore && restoreMaster && failedPrimary.length) { //restoreAll
if (failedPrimary.length > 1) {
primaryEnabledService = primaryMasterAddress || donorIps[scheme];
i = failedPrimary.length;
while (i--) {
if (failedPrimary[i].address != primaryEnabledService) {
resp = getNodeIdByIp(failedPrimary[i].address);
if (resp.result != 0) return resp;
resp = execRecovery(failedPrimary[i].scenario, primaryEnabledService, resp.nodeid);
if (resp.result != 0) return resp;
resp = parseOut(resp.responses);
if (resp.result == UNABLE_RESTORE_CODE || resp.result == FAILED_CLUSTER_CODE) return resp;
if (resp.result == RESTORE_SUCCESS) {
failedPrimary.splice(i, 1);
}
}
}
}
if (failedPrimary[0]) {
resp = getNodeIdByIp(failedPrimary[0].address);
if (resp.result != 0) return resp;
resp = execRecovery(failedPrimary[0].scenario, donorIps[scheme], resp.nodeid);
if (resp.result != 0) return resp;
resp = parseOut(resp.responses);
if (resp.result == UNABLE_RESTORE_CODE || resp.result == FAILED_CLUSTER_CODE) return resp;
if (failedNodes.length) {
i = failedNodes.length;
while (i--) {
if (failedNodes[i].address == failedPrimary[0].address) {
failedNodes.splice(i, 1);
break;
}
}
}
}
failedPrimary = [];
if (primaryDonorIp) {
donorIps[scheme] = primaryDonorIp;
}
}
if (clusterFailed) {
return {
result: isRestore ? UNABLE_RESTORE_CODE : FAILED_CLUSTER_CODE,
type: WARNING
};
}
return {
result: !isRestore ? 200 : 201,
type: SUCCESS
};
}
}
return {
result: !isRestore ? 200 : 201,
type: SUCCESS
};
function setFailedDisplayNode(address, removeLabelFailed) {
var REGEXP = new RegExp('\\b - ' + FAILED + '\\b', 'gi'),
displayName,
resp,
node;
removeLabelFailed = !!removeLabelFailed;
resp = getNodeIdByIp(address);
if (resp.result != 0) return resp;
resp = getNodeInfoById(resp.nodeid);
if (resp.result != 0) return resp;
node = resp.node;
if (!isRestore && node.displayName.indexOf(FAILED_UPPER_CASE) != -1) return { result: 0 }
displayName = removeLabelFailed ? node.displayName.replace(REGEXP, "") : (node.displayName + " - " + FAILED_UPPER_CASE);
return api.env.control.SetNodeDisplayName(envName, session, node.id, displayName);
}
function getNodeInfoById(id) {
var envInfo,
nodes,
node;
envInfo = getEnvInfo();
if (envInfo.result != 0) return envInfo;
nodes = envInfo.nodes;
for (var i = 0, n = nodes.length; i < n; i++) {
if (nodes[i].id == id) {
node = nodes[i];
break;
}
}
return {
result: 0,
node: node
}
}
function getNodeIdByIp(address) {
var envInfo,
nodes,
id = "";
envInfo = getEnvInfo();
if (envInfo.result != 0) return envInfo;
nodes = envInfo.nodes;
for (var i = 0, n = nodes.length; i < n; i++) {
if (nodes[i].address == address) {
id = nodes[i].id;
break;
}
}
return {
result: 0,
nodeid : id
}
}
function execRecovery(scenario, donor, nodeid) {
var action = "";
if (scenario && donor) {
action = scenario + " --donor-ip " + donor;
} else {
action = exec;
}
api.marketplace.console.WriteLog("curl --silent https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/master/addons/recovery/scripts/db-recovery.sh > /tmp/db-recovery.sh && bash /tmp/db-recovery.sh " + action);
return cmd({
command: "curl --silent https://raw.githubusercontent.com/jelastic-jps/mysql-cluster/master/addons/recovery/scripts/db-recovery.sh > /tmp/db-recovery.sh && bash /tmp/db-recovery.sh " + action,
nodeid: nodeid || ""
});
}
function getEnvInfo() {
var resp;
if (!envInfo) {
envInfo = api.env.control.GetEnvInfo(envName, session);
}
return envInfo;
}
function getSlavesOnly() {
var resp,
slaves = [];
resp = getSQLNodes();
if (resp.result != 0) return resp;
for (var i = 0, n = resp.nodes.length; i < n; i++) {
if (resp.nodes[i].address != primaryDonorIp) {
slaves.push({
address: resp.nodes[i].address,
scenario: scenario
});
}
}
return {
result: 0,
nodes: slaves
}
}
function getSQLNodes() {
var resp,
sqlNodes = [],
nodes;
resp = getEnvInfo();
if (resp.result != 0) return resp;
nodes = resp.nodes;
for (var i = 0, n = nodes.length; i < n; i++) {
if (nodes[i].nodeGroup == SQLDB) {
sqlNodes.push(nodes[i]);
}
}
return {
result: 0,
nodes: sqlNodes
}
}
function getNodeGroups() {
var envInfo;
envInfo = getEnvInfo();
if (envInfo.result != 0) return envInfo;
return {
result: 0,
nodeGroups: envInfo.nodeGroups
}
}
function cmd(values) {
var resp;
values = values || {};
if (values.nodeid) {
api.marketplace.console.WriteLog("ExecCmdById->" + values.nodeid);
resp = api.env.control.ExecCmdById(envName, session, values.nodeid, toJSON([{ command: values.command }]), true, ROOT);
} else {
resp = api.env.control.ExecCmdByGroup(envName, session, values.nodeGroup || SQLDB, toJSON([{ command: values.command }]), true, false, ROOT);
}
return resp;
}