-
Notifications
You must be signed in to change notification settings - Fork 3
/
repl_monitor_deprecated.js
161 lines (145 loc) · 3.91 KB
/
repl_monitor_deprecated.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
/**
* Следит за репликациями, при необходимости перезапускает
*
* @module repl_monitor
*
* Created by Evgeniy Malyarov on 04.07.2018.
*/
/**
* ### Переменные окружения
* DEBUG "wb:*,-not_this"
* ZONE 21
* DBPWD admin
* DBUSER admin
* COUCHPATH http://cou221:5984/wb_
* CONTINUES 1
*/
'use strict';
require('http').globalAgent.maxSockets = 35;
const debug = require('debug')('wb:repl');
const PouchDB = require('./pouchdb');
const fs = require('fs');
debug('required');
// инициализируем параметры сеанса и метаданные
const {DBUSER, DBPWD, COUCHPATH, ZONE, CONTINUES} = process.env;
const prefix = 'wb_';
// получаем массив всех репликаций
const repl_db = new PouchDB(COUCHPATH.replace(prefix, '_replicator'), {
auth: {
username: DBUSER,
password: DBPWD
},
skip_setup: true,
ajax: {timeout: 100000}
});
let runing;
restart_stopped();
function restart_stopped() {
// если задача запущена, откладываем действия на 10 минут
if(runing) {
return setTimeout(restart_stopped, 300000);
}
runing = true;
debug(new Date().toISOString());
repl_db.allDocs({include_docs: true})
.then(({rows}) => {
return new PouchDB(COUCHPATH.replace(prefix, '_active_tasks'), {
auth: {
username: DBUSER,
password: DBPWD
},
skip_setup: true,
ajax: {timeout: 100000}
})
.info()
.then((tasks) => {
const res = [];
for(const row of rows) {
if(row.id[0] === '_') {
continue;
}
for(const task of tasks) {
if(task.doc_id === row.id) {
row.doc.task = task;
delete task.doc_id;
tasks.splice(tasks.indexOf(task), 1)
break;
}
}
res.push(row.doc);
}
return res;
});
})
.then((res) => {
const rows = [];
for(const info of res) {
if(info.continuous && (!info.task || info._replication_state === 'error')) {
// надо перезапустить
rows.push(info);
}
}
debug(`finded ${rows.length} problem rows`);
return next(rows)
})
.catch((err) => {
debug(err);
})
.then(() => {
if(CONTINUES) {
runing = false;
return setTimeout(restart_stopped, 300000);
}
});
}
// перебирает задачи в асинхронном цикле
function next(rows) {
if(rows.length) {
const [info] = rows.splice(0, 1);
return restart(info)
.then(() => next(rows));
}
return Promise.resolve();
}
function sleep(time, res) {
return new Promise((resolve, reject) => {
setTimeout(() => resolve(res), time);
});
}
function restart(info) {
// останавливаем репликацию
return repl_db.get(info._id)
.catch(() => null)
.then((doc) => {
if(doc) {
debug(`stop ${doc._id}`);
return repl_db.remove(doc._id, doc._rev);
}
})
// ждём
.then(() => sleep(10000))
// запускаем репликацию
.then(() => {
const repl = {
_id: info._id,
continuous: info.continuous,
create_target : info.create_target,
owner: info.owner,
selector: info.selector,
source: info.source,
target: info.target,
}
debug(`run ${repl._id}`);
return repl_db.put(repl);
})
// продолжаем через 2 минуты
.then(() => sleep(120000))
// если возникли ошибки и это первый restart - перезапускаем
.catch((err) => {
debug(err);
if(!info.restart) {
info.restart = 1;
return sleep(10000, restart(info));
}
});
}