This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from mistakia/benchmarks/fromEntryHash
test: add benchmark for log.fromEntryHash()
- Loading branch information
Showing
1 changed file
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
'use strict' | ||
|
||
const Log = require('../src/log') | ||
const EntryIO = require('../src/entry-io') | ||
const IPFS = require('ipfs') | ||
const IPFSRepo = require('ipfs-repo') | ||
const DatastoreLevel = require('datastore-level') | ||
|
||
// State | ||
let ipfs | ||
let log | ||
|
||
// Metrics | ||
let totalLoaded = 0 | ||
let seconds = 0 | ||
let entriesLoadedPerSecond = 0 | ||
let lastTenSeconds = 0 | ||
let total = 0 | ||
|
||
let run = (() => { | ||
console.log('Starting benchmark...') | ||
|
||
const repoConf = { | ||
storageBackends: { | ||
blocks: DatastoreLevel | ||
} | ||
} | ||
|
||
ipfs = new IPFS({ | ||
repo: new IPFSRepo('./ipfs-log-benchmarks/fromEntryHash/ipfs', repoConf), | ||
start: false, | ||
EXPERIMENTAL: { | ||
pubsub: false, | ||
sharding: false, | ||
dht: false | ||
} | ||
}) | ||
|
||
ipfs.on('error', (err) => { | ||
console.error(err) | ||
}) | ||
|
||
ipfs.on('ready', async () => { | ||
// Create a log | ||
log = new Log(ipfs, 'A') | ||
|
||
const count = parseInt(process.argv[2]) || 50000 | ||
const refCount = 64 | ||
const concurrency = 128 | ||
const delay = 0 | ||
|
||
console.log("Creating a log...") | ||
|
||
const st = new Date().getTime() | ||
|
||
try { | ||
for (let i = 1; i < count + 1; i ++) { | ||
await log.append('hello' + i, refCount) | ||
process.stdout.write("\rWriting " + i + " / " + count) | ||
} | ||
const dt1 = new Date().getTime() | ||
process.stdout.write(" (" + (dt1 - st) + " ms)\n") | ||
} catch (e) { | ||
console.log(e) | ||
} | ||
|
||
const onDataUpdated = (hash, entry, resultLength, result, queue) => { | ||
entriesLoadedPerSecond++ | ||
lastTenSeconds++ | ||
total = resultLength | ||
process.stdout.write("\rLoading " + total + " / " + count) | ||
} | ||
|
||
const outputMetrics = () => { | ||
totalLoaded = total - totalLoaded | ||
seconds++ | ||
if (seconds % 10 === 0) { | ||
console.log(`--> Average of ${lastTenSeconds / 10} e/s in the last 10 seconds`) | ||
if (lastTenSeconds === 0) throw new Error('Problems!') | ||
lastTenSeconds = 0 | ||
} | ||
console.log(`\n${entriesLoadedPerSecond} entries loaded per second, ${totalLoaded} loaded in ${seconds} seconds (Entry count: ${total})`) | ||
entriesLoadedPerSecond = 0 | ||
} | ||
|
||
// Output metrics at 1 second interval | ||
setInterval(outputMetrics, 1000) | ||
|
||
const dt2 = new Date().getTime() | ||
|
||
if (global.gc) { | ||
global.gc() | ||
} else { | ||
console.warn('Start benchmark with --expose-gc flag'); | ||
} | ||
|
||
const m1 = process.memoryUsage() | ||
|
||
const result = await Log.fromEntryHash( | ||
ipfs, | ||
log.heads.map(e => e.hash), | ||
log._id, | ||
-1, | ||
[], | ||
log._key, | ||
log._keys, | ||
onDataUpdated | ||
) | ||
|
||
outputMetrics() | ||
const et = new Date().getTime() | ||
console.log("Loading took:", (et - dt2), "ms") | ||
|
||
const m2 = process.memoryUsage() | ||
const usedDelta = m1.heapUsed && Math.abs(m1.heapUsed - m2.heapUsed) / m1.heapUsed * 100 | ||
const totalDelta = m1.heapTotal && Math.abs(m1.heapTotal - m2.heapTotal) / m1.heapTotal * 100 | ||
|
||
let usedOutput = `Memory Heap Used: ${(m2.heapUsed / 1024 / 1024).toFixed(2)} MB` | ||
usedOutput += ` (${m2.heapUsed > m1.heapUsed ? '+' : '-'}${usedDelta.toFixed(2)}%)` | ||
let totalOutput = `Memory Heap Total: ${(m2.heapTotal / 1024 / 1024).toFixed(2)} MB` | ||
totalOutput += ` (${m2.heapTotal > m1.heapTotal ? '+' : '-'}${totalDelta.toFixed(2)}%)` | ||
|
||
console.log(usedOutput) | ||
console.log(totalOutput) | ||
|
||
process.exit(0) | ||
}) | ||
})() | ||
|
||
module.exports = run |