-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathloadJSONL.js
More file actions
133 lines (120 loc) · 4.04 KB
/
loadJSONL.js
File metadata and controls
133 lines (120 loc) · 4.04 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
const fs = require('fs');
const superagent = require('superagent');
const winston = require('winston');
const readline = require('readline');
const path = require('path');
const { getAuthToken } = require('./lib/login');
let inFile = process.argv[3];
let ep = process.argv[2];
const wait = (ms) => {
console.log(`(Waiting ${ms} ms...)`);
return new Promise((resolve) => setTimeout(resolve, ms));
};
(async () => {
try {
const start = new Date().valueOf();
if (!inFile) {
throw 'Usage: node loadJSONL.js <endpoint> <jsonl_file> [ <limit> ]';
} else if (!fs.existsSync(inFile)) {
throw new Error('Can\'t find input file');
}
let config = await getAuthToken(superagent);
let limit = (process.argv[4]) ? parseInt(process.argv[4], 10) : 10000000;
if (isNaN(limit)) {
throw new Error('Limit must be a number.');
}
ep = ep.replace(/__/g, '/');
ep = ep.replace(/^\.x\//, '');
const workingDir = path.dirname(inFile);
const baseName = path.basename(inFile, '.jsonl');
const errPath = `${workingDir}/${baseName}Err.jsonl`;
if (fs.existsSync(errPath)) {
fs.unlinkSync(errPath);
}
var logger;
if (config.logpath) {
const lpath = config.logpath;
const lname = inFile.replace(/.+\//, '');
const logFileName = `${lpath}/${lname}.log`;
if (fs.existsSync(logFileName)) {
fs.unlinkSync(logFileName);
}
logger = winston.createLogger({
level: 'info',
format: winston.format.json(),
defaultMeta: { service: 'user-service' },
transports: [
new winston.transports.File({ filename: logFileName })
]
});
} else {
logger = console;
}
const actionUrl = `${config.okapi}/${ep}`;
let updated = 0;
let success = 0;
let fail = 0;
const fileStream = fs.createReadStream(inFile);
const rl = readline.createInterface({
input: fileStream,
crlfDelay: Infinity
});
let x = 0;
for await (const line of rl) {
x++;
let rec = JSON.parse(line);
if (rec._errMessage) delete rec._errMessage;
if (rec.__) delete rec.__;
let lDate = new Date();
if (config.expiry && config.expiry <= lDate.valueOf()) {
config = await getAuthToken(superagent);
}
logger.info(`[${x}] ${lDate} POST ${rec.id} to ${actionUrl}`);
let recUrl = (actionUrl.match(/mapping-rules/)) ? actionUrl : `${actionUrl}/${rec.id}`;
try {
await superagent
.post(actionUrl)
.send(rec)
.set('User-Agent', config.agent)
.set('cookie', config.cookie)
.set('x-okapi-tenant', config.tenant)
.set('x-okapi-token', config.token)
.set('content-type', 'application/json')
.set('accept', 'application/json');
logger.info(` Successfully added record id ${rec.id}`);
success++;
} catch (e) {
let errMsg = (e.response) ? e.response.text : e;
logger.warn(` WARN ${errMsg}`);
logger.info(' Trying PUT request...');
try {
await superagent
.put(recUrl)
.send(rec)
.set('User-Agent', config.agent)
.set('cookie', config.cookie)
.set('x-okapi-tenant', config.tenant)
.set('x-okapi-token', config.token)
.set('content-type', 'application/json')
.set('accept', 'text/plain');
logger.info(` Successfully updated record id ${rec.id}`);
updated++;
} catch (e) {
logger.error(` ERROR ${rec.id}: ${e}`);
fs.writeFileSync(errPath, `${line}\n`, { flag: 'a'});
fail++;
}
}
if (config.delay) await wait(config.delay);
}
const end = new Date().valueOf();
const ms = end - start;
const time = Math.floor(ms / 1000);
logger.info(`\nTime: ${time} sec`);
logger.info(`Records updated: ${updated}`);
logger.info(`Records added: ${success}`);
logger.info(`Failures: ${fail}\n`);
} catch (e) {
console.error(e);
}
})();