This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
forked from exceljs/exceljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmark.js
103 lines (94 loc) · 3.46 KB
/
benchmark.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
/* eslint-disable no-console, no-unused-vars */
const ExcelJS = require('./lib/exceljs.nodejs.js');
const runs = 3;
(async () => {
try {
await runProfiling('huge xlsx file streams', () => {
return new Promise((resolve, reject) => {
// Data taken from http://eforexcel.com/wp/downloads-18-sample-csv-files-data-sets-for-testing-sales/
const workbookReader = new ExcelJS.stream.xlsx.WorkbookReader(
'./spec/integration/data/huge.xlsx'
);
workbookReader.read();
let worksheetCount = 0;
let rowCount = 0;
workbookReader.on('worksheet', worksheet => {
worksheetCount += 1;
console.log(`Reading worksheet ${worksheetCount}`);
worksheet.on('row', row => {
rowCount += 1;
if (rowCount % 50000 === 0) console.log(`Reading row ${rowCount}`);
});
});
workbookReader.on('end', () => {
console.log(`Processed ${worksheetCount} worksheets and ${rowCount} rows`);
resolve();
});
workbookReader.on('error', reject);
});
});
await runProfiling('huge xlsx file async iteration', async () => {
// Data taken from http://eforexcel.com/wp/downloads-18-sample-csv-files-data-sets-for-testing-sales/
const workbookReader = new ExcelJS.stream.xlsx.WorkbookReader(
'spec/integration/data/huge.xlsx'
);
let worksheetCount = 0;
let rowCount = 0;
for await (const worksheetReader of workbookReader) {
worksheetCount += 1;
console.log(`Reading worksheet ${worksheetCount}`);
for await (const row of worksheetReader) {
rowCount += 1;
if (rowCount % 50000 === 0) console.log(`Reading row ${rowCount}`);
}
}
console.log(`Processed ${worksheetCount} worksheets and ${rowCount} rows`);
});
} catch (err) {
console.error(err);
process.exit(1); // eslint-disable-line no-process-exit
}
})();
async function runProfiling(name, run) {
console.log('');
console.log('####################################################');
console.log(
`WARMUP: Current memory usage: ${currentMemoryUsage({runGarbageCollector: true})} MB`
);
console.log(`WARMUP: ${name} profiling started`);
const warmupStartTime = Date.now();
await run();
console.log(`WARMUP: ${name} profiling finished in ${Date.now() - warmupStartTime}ms`);
console.log(
`WARMUP: Current memory usage (before GC): ${currentMemoryUsage({
runGarbageCollector: false,
})} MB`
);
console.log(
`WARMUP: Current memory usage (after GC): ${currentMemoryUsage({
runGarbageCollector: true,
})} MB`
);
for (let i = 1; i <= runs; i += 1) {
console.log('');
console.log('####################################################');
console.log(`RUN ${i}: ${name} profiling started`);
const startTime = Date.now();
await run(); // eslint-disable-line no-await-in-loop
console.log(`RUN ${i}: ${name} profiling finished in ${Date.now() - startTime}ms`);
console.log(
`RUN ${i}: Current memory usage (before GC): ${currentMemoryUsage({
runGarbageCollector: false,
})} MB`
);
console.log(
`RUN ${i}: Current memory usage (after GC): ${currentMemoryUsage({
runGarbageCollector: true,
})} MB`
);
}
}
function currentMemoryUsage({runGarbageCollector}) {
if (runGarbageCollector) global.gc();
return Math.round((process.memoryUsage().heapUsed / 1024 / 1024) * 100) / 100;
}