forked from hull-ships/hull-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsync-agent.js
More file actions
326 lines (279 loc) · 8.76 KB
/
sync-agent.js
File metadata and controls
326 lines (279 loc) · 8.76 KB
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
/**
* Module dependencies.
*/
import _ from "lodash";
import moment from "moment";
import URI from "urijs";
import Hull from "hull";
import BatchStream from "batch-stream";
import ps from "promise-streams";
// Map each record of the stream.
import map from "through2-map";
import * as Adapters from "./adapters";
const DEFAULT_BATCH_SIZE = parseInt(process.env.BATCH_SIZE || "10000", 10);
const NB_CONCURRENT_BATCH = 3;
/**
* Export the sync agent for the SQL ship.
*/
class ConfigurationError extends Error {
constructor(msg) {
super(msg);
this.status = 403;
}
}
export default class SyncAgent {
static work(queue) {
queue.process("SyncAgent", (job, done) => {
try {
const { method, configuration, args } = job.data;
const hull = new Hull(configuration);
return hull.get("app").then(ship => {
const agent = new SyncAgent({ ship, client: hull, queue, job });
if (agent[method]) {
const ret = agent[method](...args);
if (ret && ret.then) {
ret.then(done.bind(this, null), done);
} else {
done(null, ret);
}
} else {
done(new Error(`Unknown method ${method}`));
}
}, done);
} catch (err) {
done(err);
return err;
}
});
}
async(method, ...args) {
const configuration = _.pick(this.hull.configuration(), "id", "organization", "secret");
const params = { method, args, configuration };
const job = this.queue.create("SyncAgent", params);
return job.removeOnComplete(true)
.attempts(3)
.backoff({ type: "exponential" })
.save();
}
/**
* Constructor.
*
* Params:
* @ship Object*
* @hull Object*
*/
constructor({ ship, client, queue, job, batchSize = DEFAULT_BATCH_SIZE }) {
// Expose the ship settings
// and the Hull instance.
this.ship = ship;
this.hull = client;
this.queue = queue;
this.job = job;
this.batchSize = batchSize;
this.importDelay = _.random(0, 120);
// Get the DB type.
const { db_type, output_type = "s3" } = this.ship.private_settings;
this.adapter = { in: Adapters[db_type], out: Adapters[output_type] };
// Make sure the DB type is known.
// If not, throw an error.
// Otherwise, use the correct adapter.
if (!this.adapter.in) {
throw new ConfigurationError(`Invalid database type ${db_type}.`);
}
if (!this.adapter.out) {
throw new ConfigurationError(`Invalid output type ${output_type}.`);
}
const connectionString = this.connectionString();
this.client = this.adapter.in.openConnection(connectionString);
return this;
}
isEnabled() {
return this.ship.private_settings.enabled === true;
}
isConfigured() {
return !!this.connectionString();
}
connectionString() {
const conn = ["type", "host", "port", "name", "user", "password"].reduce((c, key) => {
const val = this.ship.private_settings[`db_${key}`];
if (c && val && val.length > 0) {
return { ...c, [key]: val };
}
return false;
}, {});
if (conn) {
return URI()
.protocol(conn.type)
.username(conn.user)
.password(conn.password)
.host(conn.host)
.port(conn.port)
.path(conn.name)
.toString();
}
return false;
}
updateShipSettings(settings) {
return this.hull.get(this.ship.id).then(({ private_settings }) => {
return this.hull.put(this.ship.id, {
private_settings: {
...private_settings,
...settings
}
});
});
}
getQuery() {
return this.ship.private_settings.query;
}
/**
* Run a wrapped query.
*
* Params:
* @query String*
* @callback Function*
*
* Return:
* @callback Function
* - @error Object
* - @success Object
*/
runQuery(query, options = {}) {
// Wrap the query.
const oneDayAgo = moment().subtract(1, "day").utc();
const last_updated_at = options.last_updated_at || oneDayAgo.toISOString();
const wrappedQuery = this.adapter.in.wrapQuery(query, last_updated_at);
// Run the method for the specific adapter.
return this.adapter.in.runQuery(this.client, wrappedQuery, options)
.then(result => {
return { entries: result.rows };
});
}
startImport(options) {
this.hull.logger.info("sync.start", options);
const { query } = this.ship.private_settings;
const started_sync_at = new Date();
return this.streamQuery(query, options)
.then(stream => this.sync(stream, started_sync_at))
.catch(err => {
this.hull.logger.error("sync.error", { message: err.message });
});
}
startSync(options) {
const private_settings = this.ship.private_settings;
const oneHourAgo = moment().subtract(1, "hour").utc();
const last_updated_at = private_settings.last_updated_at || private_settings.last_sync_at || oneHourAgo.toISOString();
return this.startImport({ ...options, last_updated_at });
}
streamQuery(query, options = {}) {
const { last_updated_at } = options;
// Wrap the query.
const wrappedQuery = this.adapter.in.wrapQuery(query, last_updated_at);
this.hull.logger.debug("sync.query", { query: wrappedQuery });
// Run the method for the specific adapter.
return this.adapter.in.streamQuery(this.client, wrappedQuery).then(stream => {
stream.on("error", err => this.hull.logger.error("sync.error", { message: err.toString(), query: wrappedQuery }));
return stream;
}, err => {
this.hull.logger.error("sync.error", { message: err.toString() });
err.status = 403;
throw err;
});
}
/**
* Stream a wrapped query.
*
* Params:
* @connection_string String*
* @query String*
* @callback Function*
*
* Return:
* @callback Function
* - @error Object
* - @success Object
*/
sync(stream, started_sync_at) {
let processed = 0;
let last_updated_at;
const transform = map({ objectMode: true }, (record) => {
const user = {};
processed += 1;
if (processed % 1000 === 0) {
const elapsed = new Date() - started_sync_at;
this.hull.logger.info("sync.progress", { processed, elapsed });
if (this.job) {
this.job.progress(processed);
this.job.log("%d proceesed in %d ms", processed, elapsed);
}
}
// Add the user id if exists.
if (record.external_id) {
user.userId = record.external_id.toString();
}
if (record.updated_at) {
last_updated_at = last_updated_at || record.updated_at;
if (record.updated_at > last_updated_at) {
last_updated_at = record.updated_at;
}
}
// Register eveything else inside the "traits" object.
user.traits = _.omit(record, "external_id", "updated_at");
return user;
});
const batch = new BatchStream({ size: this.batchSize });
let num = 0;
let last_job_id = null;
return stream
.pipe(transform)
.pipe(batch)
.pipe(ps.map({ concurrent: NB_CONCURRENT_BATCH }, users => {
num += 1;
return this.adapter.out.upload(users, this.ship.id, num).then(({ url, partNumber, size }) => {
if (users.length > 0) {
return this.startImportJob(url, partNumber, size);
}
return false;
})
.then(({ job, partNumber }) => {
last_job_id = job.id;
this.hull.logger.info(`sync.job.part.${partNumber}`, JSON.stringify({ job }));
return { job };
})
.catch(err => {
this.hull.logger.error("sync.error", err.message);
});
}))
.wait()
.then(() => {
const duration = new Date() - started_sync_at;
this.hull.logger.info("sync.done", { duration, processed });
const settings = {
last_sync_at: started_sync_at,
last_updated_at: last_updated_at || started_sync_at
};
if (last_job_id) {
settings.last_job_id = last_job_id;
}
return this.updateShipSettings(settings);
});
}
startImportJob(url, partNumber, size) {
const { overwrite } = this.ship.private_settings;
const params = {
url,
format: "json",
notify: true,
emit_event: false,
overwrite: !!overwrite,
name: `Import from hull-sql ${this.ship.name} - part ${partNumber}`,
schedule_at: moment().add(this.importDelay + (2 * partNumber), "minutes").toISOString(),
stats: { size }
};
this.hull.logger.info("sync.import", _.omit(params, "url"));
return this.hull.post("/import/users", params)
.then(job => {
return { job, partNumber };
});
}
}