49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
'use strict'
|
|
|
|
const IpfsDaemon = require('ipfs-daemon')
|
|
const OrbitDB = require('../src/OrbitDB')
|
|
|
|
// Metrics
|
|
let totalQueries = 0
|
|
let seconds = 0
|
|
let queriesPerSecond = 0
|
|
let lastTenSeconds = 0
|
|
|
|
// Main loop
|
|
const queryLoop = (db) => {
|
|
db.add(totalQueries).then(() => {
|
|
totalQueries ++
|
|
lastTenSeconds ++
|
|
queriesPerSecond ++
|
|
process.nextTick(() => queryLoop(db))
|
|
})
|
|
}
|
|
|
|
// Start
|
|
let run = (() => {
|
|
IpfsDaemon()
|
|
.then((res) => {
|
|
const orbit = new OrbitDB(res.ipfs, 'benchmark')
|
|
const db = orbit.eventlog('orbit-db.benchmark')
|
|
|
|
// Metrics output
|
|
setInterval(() => {
|
|
seconds ++
|
|
if(seconds % 10 === 0) {
|
|
console.log(`--> Average of ${lastTenSeconds/10} q/s in the last 10 seconds`)
|
|
if(lastTenSeconds === 0)
|
|
throw new Error("Problems!")
|
|
lastTenSeconds = 0
|
|
}
|
|
console.log(`${queriesPerSecond} queries per second, ${totalQueries} queries in ${seconds} seconds`)
|
|
queriesPerSecond = 0
|
|
}, 1000)
|
|
|
|
// Start the main loop
|
|
queryLoop(db)
|
|
})
|
|
.catch((e) => console.error(e))
|
|
})()
|
|
|
|
module.exports = run
|