c5967a9616
* Rename to saveBatch * forgot a file * first pass of cacheReader * OL2 tests have infinite timeout * OL2 refactor works * fix for tests * moved/removed types to make a more logical structure * fixed imports * rework loop to be in async generator for the expected count * get rid of pumps and fix test * lint fix * redo mermaid diagrams * add readme section on deferment * always return root first * fix linting * revert the counting * merge fixes * remove unused var
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
import KeyedQueue from './keyedQueue.js'
|
|
|
|
export default class BatchingQueue<T> {
|
|
#queue: KeyedQueue<string, T> = new KeyedQueue<string, T>()
|
|
#batchSize: number
|
|
#processFunction: (batch: T[]) => Promise<void>
|
|
|
|
#baseInterval: number
|
|
#minInterval: number
|
|
#maxInterval: number
|
|
|
|
#processingLoop: Promise<void>
|
|
#disposed = false
|
|
|
|
constructor(params: {
|
|
batchSize: number
|
|
maxWaitTime?: number
|
|
processFunction: (batch: T[]) => Promise<void>
|
|
}) {
|
|
this.#batchSize = params.batchSize
|
|
this.#baseInterval = Math.min(params.maxWaitTime ?? 200, 200) // Initial batch time (ms)
|
|
this.#minInterval = Math.min(params.maxWaitTime ?? 100, 100) // Minimum batch time
|
|
this.#maxInterval = Math.min(params.maxWaitTime ?? 3000, 3000) // Maximum batch time
|
|
this.#processFunction = params.processFunction
|
|
this.#processingLoop = this.#loop()
|
|
}
|
|
|
|
async disposeAsync(): Promise<void> {
|
|
this.#disposed = true
|
|
await this.#processingLoop
|
|
}
|
|
|
|
add(key: string, item: T): void {
|
|
this.#queue.enqueue(key, item)
|
|
}
|
|
|
|
addAll(keys: string[], items: T[]): void {
|
|
this.#queue.enqueueAll(keys, items)
|
|
}
|
|
|
|
get(id: string): T | undefined {
|
|
return this.#queue.get(id)
|
|
}
|
|
|
|
count(): number {
|
|
return this.#queue.size
|
|
}
|
|
|
|
isDisposed(): boolean {
|
|
return this.#disposed
|
|
}
|
|
|
|
#getBatch(batchSize: number): T[] {
|
|
return this.#queue.spliceValues(0, Math.min(batchSize, this.#queue.size))
|
|
}
|
|
|
|
async #loop(): Promise<void> {
|
|
let interval = this.#baseInterval
|
|
while (!this.#disposed || this.#queue.size > 0) {
|
|
const startTime = performance.now()
|
|
if (this.#queue.size > 0) {
|
|
const batch = this.#getBatch(this.#batchSize)
|
|
//console.log('running with queue size of ' + this.#queue.length)
|
|
await this.#processFunction(batch)
|
|
}
|
|
if (this.#queue.size < this.#batchSize / 2) {
|
|
//refigure interval
|
|
const endTime = performance.now()
|
|
const duration = endTime - startTime
|
|
if (duration > interval) {
|
|
interval = Math.min(interval * 1.5, this.#maxInterval) // Increase if slow or empty
|
|
} else {
|
|
interval = Math.max(interval * 0.8, this.#minInterval) // Decrease if fast
|
|
}
|
|
/*console.log(
|
|
'queue is waiting ' +
|
|
interval / 1000 +
|
|
' with queue size of ' +
|
|
this.#queue.length
|
|
)*/
|
|
await this.#delay(interval)
|
|
}
|
|
}
|
|
}
|
|
|
|
#delay(ms: number): Promise<void> {
|
|
return new Promise((resolve) => setTimeout(resolve, ms))
|
|
}
|
|
}
|