forked from rocicorp/replicache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperf.js
More file actions
401 lines (359 loc) · 9.3 KB
/
Copy pathperf.js
File metadata and controls
401 lines (359 loc) · 9.3 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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
/* eslint-disable @typescript-eslint/ban-ts-comment */
// @ts-check
/* eslint-env browser, es2020 */
import {Replicache} from '../out/replicache.mjs';
console.assert = console.debug = console.error = console.info = console.log = console.warn = () =>
void 0;
const valSize = 1024;
/**
* @template R
* @returns {{promise: Promise<R>, resolve: (res: R) => void}}
*/
function resolver() {
let resolve;
const promise = new Promise(res => {
resolve = res;
});
return {promise, resolve};
}
/**
* @param {number} len
*/
function randomString(len) {
const arr = new Uint8Array(len);
crypto.getRandomValues(arr);
for (let i = 0; i < len; i++) {
// Don't allow \0 in the string because these values are used as secondary
// keys when building indexes and we do not allow \0 there so it slows down
// the benchmark.
if (arr[i] === 0) {
arr[i] = 1;
}
}
return new TextDecoder('ascii').decode(arr);
}
/**
* @param {number} length
*/
function makeRandomStrings(length) {
return Array.from({length}, () => randomString(valSize));
}
/**
* @param {string} name
*/
function deleteDatabase(name) {
return new Promise((resolve, reject) => {
const req = indexedDB.deleteDatabase(name);
req.onsuccess = resolve;
req.onerror = req.onblocked = req.onupgradeneeded = reject;
});
}
let counter = 0;
async function makeRep() {
const name = `bench${counter++}`;
await deleteDatabase(name);
return new Replicache({
name,
pullInterval: null,
});
}
/**
* @param {Replicache} rep
* @param {{numKeys: number}}
* @param {string[]} randomStrings
*/
async function populate(rep, {numKeys}, randomStrings) {
const set = rep.register('populate', async tx => {
for (let i = 0; i < numKeys; i++) {
await tx.put(`key${i}`, randomStrings[i]);
}
});
await set();
}
/**
* @param {Bench} bench
* @param {{numKeys: number; clean: boolean; indexes?: number;}} opts
*/
async function benchmarkPopulate(bench, opts) {
const rep = await makeRep();
if (!opts.clean) {
await populate(rep, opts, makeRandomStrings(opts.numKeys));
}
for (let i = 0; i < opts.indexes || 0; i++) {
await rep.createIndex({
name: `idx${i}`,
jsonPointer: '',
});
}
const randomStrings = makeRandomStrings(opts.numKeys);
bench.reset();
bench.name = `populate ${valSize}x${opts.numKeys} (${
opts.clean ? 'clean' : 'dirty'
}, ${`indexes: ${opts.indexes || 0}`})`;
bench.size = opts.numKeys * valSize;
await populate(rep, opts, randomStrings);
bench.stop();
await rep.close();
}
/** @typedef {{
* setup: (body: () => Promise<void> | void) => Promise<void>;
* teardown: () => Promise<void> | void;
* name: string;
* size: number;
* reset: () => void;
* stop: () => void;
* formatter: (size: number, timeMS: number) => string;
* }}
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
let Bench;
/** @type {Replicache} */
let rep;
async function benchmarkReadTransaction(bench, opts) {
await bench.setup(async () => {
bench.name = `read tx ${valSize}x${opts.numKeys}`;
bench.size = opts.numKeys * valSize;
rep = await makeRep();
await populate(rep, opts, makeRandomStrings(opts.numKeys));
});
bench.teardown = async () => {
await rep.close();
};
await populate(rep, opts, makeRandomStrings(opts.numKeys));
bench.reset();
await rep.query(async tx => {
let getCount = 0;
let hasCount = false;
for (let i = 0; i < opts.numKeys; i++) {
// use the values to be confident we're not optimizing away.
// @ts-ignore
getCount += (await tx.get(`key${i}`)).length;
// @ts-ignore
hasCount = (await tx.has(`key${i}`)) === true ? 1 : 0;
}
console.log(getCount, hasCount);
});
bench.stop();
}
/**
* @param {Bench} bench
* @param {{numKeys: number;}} opts
*/
async function benchmarkScan(bench, opts) {
await bench.setup(async () => {
bench.name = `scan ${valSize}x${opts.numKeys}`;
bench.size = opts.numKeys * valSize;
rep = await makeRep();
await populate(rep, opts, makeRandomStrings(opts.numKeys));
});
bench.teardown = async () => {
await rep.close();
};
bench.reset();
await rep.query(async tx => {
let count = 0;
for await (const value of tx.scan()) {
// use the value to be confident we're not optimizing away.
// @ts-ignore
count += value.length;
}
console.log(count);
});
bench.stop();
}
/**
* @param {Bench} bench
* @param {number} i
*/
async function benchmarkSingleByteWrite(bench, i) {
const rep = await makeRep();
const write = rep.register('write', tx => tx.put('k', i % 10));
bench.name = 'write single byte';
bench.size = 1;
bench.formatter = formatTxPerSecond;
bench.reset();
await write();
bench.stop();
await rep.close();
}
/**
* @param {Bench} bench
* @param {{numKeys: number;}} opts
*/
async function createIndex(bench, opts) {
const rep = await makeRep();
await populate(rep, opts, makeRandomStrings(opts.numKeys));
bench.name = `create index ${valSize}x${opts.numKeys}`;
bench.size = 1;
bench.formatter = formatOpPerSecond;
bench.reset();
await rep.createIndex({
name: `idx`,
jsonPointer: '',
});
bench.stop();
await rep.close();
}
/**
* @param {Bench} bench
* @param {number} i
*/
async function benchmarkWriteReadRoundTrip(bench, i) {
await bench.setup(async () => {
rep = await makeRep();
});
bench.teardown = async () => {
await rep.close();
};
const key = `k${i}`;
const value = i;
let {promise, resolve} = resolver();
const unsubscribe = rep.subscribe(tx => tx.get(key), {
onData(res) {
// `resolve` binding needs to be looked up on every iteration
resolve(res);
},
});
// onData is called once when calling subscribe
await promise;
const write = rep.register('write', tx => tx.put(key, value));
bench.name = 'roundtrip write/subscribe/get';
bench.size = 1;
bench.formatter = formatOpPerSecond;
bench.reset();
// reset these.
({promise, resolve} = resolver());
await write();
const res = await promise;
if (res !== value) {
throw new Error();
}
bench.stop();
unsubscribe();
}
/**
* @param {(bench: Bench, i: number) => void | Promise<void>} fn
*/
async function benchmark(fn) {
// Execute fn at least this many runs.
const minRuns = 5;
// Execute fn at least for this long.
const minTime = 2000;
const times = [];
let sum = 0;
let name = String(fn);
let size = 0;
let format = formatToMBPerSecond;
let setupCalled = false;
/** @type {(() => Promise<void> | void) | undefined} */
let teardown;
for (let i = 0; i < minRuns || sum < minTime; i++) {
let t0 = performance.now();
let t1 = 0;
await fn(
{
reset() {
t0 = performance.now();
},
stop() {
t1 = performance.now();
},
/**
* @param {string} n
*/
set name(n) {
name = n;
},
/**
* @param {number} s
*/
set size(s) {
size = s;
},
/**
* @return {number} s
*/
get size() {
return size;
},
/**
* @param {(size: number, timeMS: number) => string} f
*/
set formatter(f) {
format = f;
},
/**
* @param {() => void | Promise<void>} f
*/
async setup(f) {
if (!setupCalled) {
await f();
setupCalled = true;
}
},
/**
* @param {() => (Promise<void> | void) } f
*/
set teardown(f) {
teardown = f;
},
},
i,
);
if (t1 == 0) {
t1 = performance.now();
}
const dur = t1 - t0;
times.push(dur);
sum += dur;
}
if (teardown) {
await teardown();
}
console.log(sum);
times.sort();
const runs = times.length;
const median = times[Math.floor(runs / 2)];
const value = format(size, median);
return {name, value, median, runs};
}
/**
* @param {number} size
* @param {number} timeMS
*/
function formatToMBPerSecond(size, timeMS) {
const bytes = (size / timeMS) * 1000;
return (bytes / 2 ** 20).toFixed(2) + ' MB/s';
}
/**
* @param {string} x
* @return {(size: number, timeMS: number) => string}
*/
function makeFormatXPerSecond(x) {
return (size, timeMS) => `${((size / timeMS) * 1000).toFixed(2)} ${x}/s`;
}
const formatTxPerSecond = makeFormatXPerSecond('tx');
const formatOpPerSecond = makeFormatXPerSecond('op');
const benchmarks = [
bench => benchmarkPopulate(bench, {numKeys: 1000, clean: true}),
bench => benchmarkPopulate(bench, {numKeys: 1000, clean: false}),
bench => benchmarkPopulate(bench, {numKeys: 1000, clean: true, indexes: 1}),
bench => benchmarkPopulate(bench, {numKeys: 1000, clean: true, indexes: 2}),
bench => benchmarkReadTransaction(bench, {numKeys: 1000}),
bench => benchmarkReadTransaction(bench, {numKeys: 5000}),
bench => benchmarkScan(bench, {numKeys: 1000}),
bench => benchmarkScan(bench, {numKeys: 5000}),
benchmarkSingleByteWrite,
benchmarkWriteReadRoundTrip,
bench => createIndex(bench, {numKeys: 1000}),
bench => createIndex(bench, {numKeys: 5000}),
];
let current = 0;
async function nextTest() {
if (current < benchmarks.length) {
return await benchmark(benchmarks[current++]);
}
return null;
}
// @ts-ignore
window.nextTest = nextTest;