-
Notifications
You must be signed in to change notification settings - Fork 1
/
benchmark.js
235 lines (196 loc) · 8.18 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
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
require('dotenv').config();
require('module-alias/register')
const Benches = {
localSingle: true,
localMulti: true,
redisSingle: true,
redisMulti: false,
}
process.env.LOG_LEVEL = 1; // OVERRIDE LOG LEVEL
const { log } = require('@lib/logger');
process.log = {};
process.log = log;
const redis = require('@lib/cache/redis_driver');
const local = require('@lib/cache/local_driver');
const MAX_KEYS = 100 * 1000;
const METRICS_DIVISOR = MAX_KEYS / 10000;
const METRICS_EVERY = Math.floor(MAX_KEYS / METRICS_DIVISOR) || 1;
const mem_start = process.memoryUsage().rss;
let last_report = Date.now();
let now;
const numberWithDots = (x) => {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ".");
}
const LocalSingle = () => {
return new Promise(async (resolve, reject) => {
for (let idx = 1; idx <= MAX_KEYS; idx++) {
let keyBuf = Buffer.from(idx.toString(36));
let valueBuf = Buffer.from('This is a test');
local.addWebtoken(keyBuf, valueBuf, valueBuf, valueBuf, valueBuf, valueBuf, valueBuf);
if (idx && (idx % METRICS_EVERY == 0)) {
now = Date.now();
write_iter_sec = Math.floor(METRICS_EVERY / ((now - last_report) / 1000));
// pause and do some reads
now = Date.now();
last_report = now;
for (var idy = idx - METRICS_EVERY; idy < idx; idy++) {
let keyBuf = Buffer.from(idy.toString(36));
local.getWebtokenSave(keyBuf);
}
now = Date.now();
read_iter_sec = Math.floor(METRICS_EVERY / ((now - last_report) / 1000));
let mem = await local.getMemoryUsage()
console.log(
"(Local) Total Keys: " + numberWithDots(idx) +
", Writes/sec: " + numberWithDots(write_iter_sec) +
", Reads/sec: " + numberWithDots(read_iter_sec) +
", Memory: " + numberWithDots((mem / 1024 / 1024).toFixed(0)) + " MB"
);
if (idx == MAX_KEYS) {
resolve();
}
now = Date.now();
last_report = now;
}
}
})
}
const LocalMulti = () => {
return new Promise(async (resolve, reject) => {
let Container = [];
for (let idx = 1; idx <= MAX_KEYS; idx++) {
let keyBuf = Buffer.from(idx.toString(36));
let valueBuf = Buffer.from('This is a test');
Container.push(local.addWebtoken(keyBuf, valueBuf, valueBuf, valueBuf, valueBuf, valueBuf, valueBuf));
if (idx && (idx % METRICS_EVERY == 0)) {
await Promise.all(Container);
Container = [];
now = Date.now();
write_iter_sec = Math.floor(METRICS_EVERY / ((now - last_report) / 1000));
// pause and do some reads
now = Date.now();
last_report = now;
for (var idy = idx - METRICS_EVERY; idy < idx; idy++) {
let keyBuf = Buffer.from(idy.toString(36));
Container.push(local.getWebtokenSave(keyBuf));
}
await Promise.all(Container);
Container = [];
now = Date.now();
read_iter_sec = Math.floor(METRICS_EVERY / ((now - last_report) / 1000));
let mem = await local.getMemoryUsage()
console.log(
"(Local) Total Keys: " + numberWithDots(idx) +
", Writes/sec: " + numberWithDots(write_iter_sec) +
", Reads/sec: " + numberWithDots(read_iter_sec) +
", Memory: " + numberWithDots((mem / 1024 / 1024).toFixed(0)) + " MB"
);
if (idx == MAX_KEYS) {
resolve();
}
now = Date.now();
last_report = now;
}
}
})
}
const RedisSingle = () => {
return new Promise(async (resolve, reject) => {
for (let idx = 1; idx <= MAX_KEYS; idx++) {
let keyBuf = Buffer.from(idx.toString(36));
let valueBuf = Buffer.from('This is a test');
await redis.addWebtoken(keyBuf, valueBuf, valueBuf, valueBuf, valueBuf, valueBuf, valueBuf);
if (idx && (idx % METRICS_EVERY == 0)) {
now = Date.now();
write_iter_sec = Math.floor(METRICS_EVERY / ((now - last_report) / 1000));
// pause and do some reads
now = Date.now();
last_report = now;
for (let idy = idx - METRICS_EVERY; idy < idx; idy++) {
let keyBuf = Buffer.from(idy.toString(36));
await redis.getWebtokenSave(keyBuf);
}
now = Date.now();
read_iter_sec = Math.floor(METRICS_EVERY / ((now - last_report) / 1000));
let memoryArray = await redis.getMemoryUsage();
console.log(
"(Redis) Total Keys: " + numberWithDots(idx) +
", Writes/sec: " + numberWithDots(write_iter_sec) +
", Reads/sec: " + numberWithDots(read_iter_sec) +
", Memory: " + (Number(memoryArray) / 1024 / 1024).toFixed(0) + " MB "
);
if (idx == MAX_KEYS) {
resolve();
}
now = Date.now();
last_report = now;
}
}
})
}
const RedisMulti = () => {
return new Promise(async (resolve, reject) => {
let Container = [];
for (let idx = 1; idx <= MAX_KEYS; idx++) {
let keyBuf = Buffer.from(idx.toString(36));
let valueBuf = Buffer.from('This is a test');
Container.push(redis.addWebtoken(keyBuf, valueBuf, valueBuf, valueBuf, valueBuf, valueBuf, valueBuf));
if (idx && (idx % METRICS_EVERY == 0)) {
await Promise.all(Container);
Container = [];
now = Date.now();
write_iter_sec = Math.floor(METRICS_EVERY / ((now - last_report) / 1000));
// pause and do some reads
now = Date.now();
last_report = now;
for (let idy = idx - METRICS_EVERY; idy < idx; idy++) {
let keyBuf = Buffer.from(idy.toString(36));
Container.push(redis.getWebtokenSave(keyBuf));
}
await Promise.all(Container);
Container = [];
now = Date.now();
read_iter_sec = Math.floor(METRICS_EVERY / ((now - last_report) / 1000));
let memoryArray = await redis.getMemoryUsage();
console.log(
"(Redis) Total Keys: " + numberWithDots(idx) +
", Writes/sec: " + numberWithDots(write_iter_sec) +
", Reads/sec: " + numberWithDots(read_iter_sec) +
", Memory: " + (Number(memoryArray) / 1024 / 1024).toFixed(0) + " MB "
);
if (idx == MAX_KEYS) {
resolve();
}
now = Date.now();
last_report = now;
}
}
})
}
(async () => {
if (Benches.localSingle) {
console.log("Starting local benchmark, single Transaction");
await LocalSingle();
console.log(`LocalCache: ${await local.WipeCache()}`);
console.log("\n\n")
}
if (Benches.localMulti) {
console.log("Starting local benchmark, multi Transaction");
await LocalMulti();
console.log(`LocalCache: ${await local.WipeCache()}`);
console.log("\n\n")
}
if (Benches.redisSingle) {
console.log("Starting Redis benchmark, single Transaction");
await RedisSingle();
console.log(`RedisCache: ${await redis.WipeCache()}`);
console.log("\n\n")
}
if (Benches.redisMulti) {
console.log("Starting Redis benchmark, multi Transaction");
await RedisMulti();
console.log(`RedisCache: ${await redis.WipeCache()}`);
console.log("\n\n")
}
process.exit(0);
})();