mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-03-30 15:08:28 +00:00
64 lines
1.9 KiB
JavaScript
64 lines
1.9 KiB
JavaScript
import { Identities, Log } from '../src/index.js'
|
|
import { MemoryStorage } from '../src/storage/index.js'
|
|
// import { MemoryStorage, LevelStorage, LRUStorage } from '../src/storage/index.js'
|
|
|
|
// State
|
|
let log
|
|
|
|
// Metrics
|
|
let totalQueries = 0
|
|
let seconds = 0
|
|
let queriesPerSecond = 0
|
|
let lastTenSeconds = 0
|
|
|
|
// Settings
|
|
const benchmarkDuration = 20 // seconds
|
|
|
|
const queryLoop = async () => {
|
|
await log.append(totalQueries.toString())
|
|
totalQueries++
|
|
lastTenSeconds++
|
|
queriesPerSecond++
|
|
setImmediate(queryLoop)
|
|
}
|
|
|
|
;(async () => {
|
|
console.log('Starting benchmark...')
|
|
|
|
console.log('Benchmark duration is ' + benchmarkDuration + ' seconds')
|
|
|
|
const identities = await Identities()
|
|
const testIdentity = await identities.createIdentity({ id: 'userA' })
|
|
|
|
// MemoryStorage is the default storage for Log but defining them here
|
|
// in case we want to benchmark different storage modules
|
|
const entryStorage = await MemoryStorage()
|
|
const headsStorage = await MemoryStorage()
|
|
// Test LRUStorage
|
|
// const entryStorage = await LRUStorage()
|
|
// const headsStorage = await LRUStorage()
|
|
// Test LevelStorage
|
|
// const entryStorage = await LevelStorage({ path: './logA/entries' })
|
|
// const headsStorage = await LevelStorage({ path: './logA/heads' })
|
|
|
|
log = await Log(testIdentity, { logId: 'A', entryStorage, headsStorage })
|
|
|
|
// Output metrics at 1 second interval
|
|
const interval = 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
|
|
}
|
|
if (seconds >= benchmarkDuration) {
|
|
clearInterval(interval)
|
|
process.exit(0)
|
|
}
|
|
console.log(`${queriesPerSecond} queries per second, ${totalQueries} queries in ${seconds} seconds`)
|
|
queriesPerSecond = 0
|
|
}, 1000)
|
|
|
|
setImmediate(queryLoop)
|
|
})()
|