feat: add aggregation engine with incremental SUM/COUNT/AVG/MIN/MAX, GROUP BY, and time windows
Add a write-time incremental aggregation engine that maintains running
totals on every add/update/delete for O(1) read performance. Integrates
into brain.find({ aggregate }) for a unified query API.
Core features:
- AggregationIndex with defineAggregate()/removeAggregate() API
- Five aggregation operations: SUM, COUNT, AVG, MIN, MAX
- GROUP BY with multiple dimensions including time windows
- Time window bucketing: hour, day, week, month, quarter, year, custom
- Materialization of results as NounType.Measurement entities
- Debounced persistence of definitions and state to storage
- Definition change detection via FNV-1a hashing with auto-rebuild
- Infinite loop prevention for materialized entities
- 'aggregation' plugin provider key for native acceleration
- Lazy initialization (created on first defineAggregate() call)
- 73 tests (unit + integration) covering all functionality
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
089a4d4141
commit
f024e56ee7
19 changed files with 2986 additions and 21 deletions
619
src/aggregation/AggregationIndex.ts
Normal file
619
src/aggregation/AggregationIndex.ts
Normal file
|
|
@ -0,0 +1,619 @@
|
|||
/**
|
||||
* AggregationIndex - Incremental Write-Time Aggregation Engine
|
||||
*
|
||||
* Maintains running totals on every add/update/delete for O(1) reads.
|
||||
* Follows the same pattern as MetadataIndexManager and GraphAdjacencyIndex.
|
||||
*
|
||||
* Key design decisions:
|
||||
* - Source matching reuses matchesMetadataFilter() from metadataFilter.ts
|
||||
* - Entities with service='brainy:aggregation' or metadata.__aggregate are
|
||||
* skipped to prevent infinite loops (materialized entities feeding back)
|
||||
* - MIN/MAX on delete are set to NaN and lazy-recomputed on next query
|
||||
* - Persistence uses storage.saveMetadata() / storage.getMetadata()
|
||||
* - Delta detection hashes definitions; only changed aggregates rebuild on restart
|
||||
*/
|
||||
|
||||
import type { StorageAdapter } from '../coreTypes.js'
|
||||
import type {
|
||||
AggregateDefinition,
|
||||
AggregateGroupState,
|
||||
AggregateQueryParams,
|
||||
AggregateResult,
|
||||
AggregationProvider,
|
||||
GroupByDimension,
|
||||
MetricState
|
||||
} from '../types/brainy.types.js'
|
||||
import { matchesMetadataFilter } from '../utils/metadataFilter.js'
|
||||
import { bucketTimestamp } from './timeWindows.js'
|
||||
import { NounType } from '../types/graphTypes.js'
|
||||
|
||||
/** Persistence key for aggregate definitions */
|
||||
const DEFINITIONS_KEY = '__aggregation_definitions__'
|
||||
|
||||
/** Prefix for per-aggregate state persistence keys */
|
||||
const STATE_KEY_PREFIX = '__aggregation_state_'
|
||||
|
||||
/**
|
||||
* Serialize a group key map into a deterministic string for use as a Map key.
|
||||
*/
|
||||
function serializeGroupKey(groupKey: Record<string, string | number>): string {
|
||||
const sorted = Object.keys(groupKey).sort()
|
||||
return sorted.map(k => `${k}=${groupKey[k]}`).join('|')
|
||||
}
|
||||
|
||||
/**
|
||||
* Hash an aggregate definition for change detection on restart.
|
||||
*/
|
||||
function hashDefinition(def: AggregateDefinition): string {
|
||||
// Deterministic JSON: sort keys
|
||||
const normalized = JSON.stringify({
|
||||
name: def.name,
|
||||
source: def.source,
|
||||
groupBy: def.groupBy,
|
||||
metrics: Object.keys(def.metrics).sort().map(k => [k, def.metrics[k]])
|
||||
})
|
||||
// Simple FNV-1a 32-bit hash
|
||||
let hash = 0x811c9dc5
|
||||
for (let i = 0; i < normalized.length; i++) {
|
||||
hash ^= normalized.charCodeAt(i)
|
||||
hash = (hash * 0x01000193) >>> 0
|
||||
}
|
||||
return hash.toString(16)
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a fresh MetricState with identity values.
|
||||
*/
|
||||
function freshMetricState(): MetricState {
|
||||
return { sum: 0, count: 0, min: Infinity, max: -Infinity }
|
||||
}
|
||||
|
||||
/**
|
||||
* Check whether an entity matches an aggregate's source filter.
|
||||
*/
|
||||
function matchesSource(entity: Record<string, unknown>, source: AggregateDefinition['source']): boolean {
|
||||
// Type filter
|
||||
if (source.type) {
|
||||
const entityType = entity.type ?? entity.noun
|
||||
const types = Array.isArray(source.type) ? source.type : [source.type]
|
||||
if (!types.includes(entityType as NounType)) return false
|
||||
}
|
||||
|
||||
// Service filter
|
||||
if (source.service) {
|
||||
if (entity.service !== source.service) return false
|
||||
}
|
||||
|
||||
// Metadata where filter — match against the entity's metadata sub-object
|
||||
if (source.where && Object.keys(source.where).length > 0) {
|
||||
const metadata = (entity.metadata ?? entity) as Record<string, unknown>
|
||||
if (!matchesMetadataFilter(metadata, source.where)) return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
/**
|
||||
* Compute the group key for an entity given groupBy dimensions.
|
||||
*/
|
||||
function computeGroupKey(
|
||||
entity: Record<string, unknown>,
|
||||
groupBy: GroupByDimension[]
|
||||
): Record<string, string | number> {
|
||||
const key: Record<string, string | number> = {}
|
||||
const metadata = (entity.metadata ?? {}) as Record<string, unknown>
|
||||
|
||||
for (const dim of groupBy) {
|
||||
if (typeof dim === 'string') {
|
||||
// Plain field lookup — check metadata first, then top-level
|
||||
const val = metadata[dim] ?? entity[dim]
|
||||
key[dim] = val !== undefined && val !== null ? String(val) : '__null__'
|
||||
} else {
|
||||
// Time-windowed field
|
||||
const val = metadata[dim.field] ?? entity[dim.field]
|
||||
if (typeof val === 'number') {
|
||||
key[dim.field] = bucketTimestamp(val, dim.window)
|
||||
} else {
|
||||
key[dim.field] = '__null__'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return key
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the numeric value of a field from entity metadata (for metric computation).
|
||||
*/
|
||||
function getNumericField(entity: Record<string, unknown>, field: string): number | undefined {
|
||||
const metadata = (entity.metadata ?? {}) as Record<string, unknown>
|
||||
const val = metadata[field] ?? entity[field]
|
||||
if (typeof val === 'number' && !isNaN(val)) return val
|
||||
if (typeof val === 'string') {
|
||||
const num = parseFloat(val)
|
||||
if (!isNaN(num)) return num
|
||||
}
|
||||
return undefined
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if an entity is a materialized aggregate entity (to prevent infinite loops).
|
||||
*/
|
||||
function isAggregateEntity(entity: Record<string, unknown>): boolean {
|
||||
if (entity.service === 'brainy:aggregation') return true
|
||||
const metadata = (entity.metadata ?? {}) as Record<string, unknown>
|
||||
if (metadata.__aggregate) return true
|
||||
return false
|
||||
}
|
||||
|
||||
export class AggregationIndex {
|
||||
private storage: StorageAdapter
|
||||
private nativeProvider?: AggregationProvider
|
||||
|
||||
/** Registered aggregate definitions keyed by name */
|
||||
private definitions = new Map<string, AggregateDefinition>()
|
||||
|
||||
/** Hashes of definitions for change detection */
|
||||
private definitionHashes = new Map<string, string>()
|
||||
|
||||
/** Per-aggregate group states: Map<aggName, Map<serializedGroupKey, AggregateGroupState>> */
|
||||
private states = new Map<string, Map<string, AggregateGroupState>>()
|
||||
|
||||
/** Track which aggregates have dirty state needing persistence */
|
||||
private dirty = new Set<string>()
|
||||
|
||||
/** Track aggregates with stale MIN/MAX (need lazy recompute) */
|
||||
private staleMinMax = new Map<string, Set<string>>()
|
||||
|
||||
constructor(storage: StorageAdapter, nativeProvider?: AggregationProvider) {
|
||||
this.storage = storage
|
||||
this.nativeProvider = nativeProvider
|
||||
}
|
||||
|
||||
// ============= Lifecycle =============
|
||||
|
||||
/**
|
||||
* Initialize: load persisted definitions and state, detect changes, rebuild stale.
|
||||
*/
|
||||
async init(): Promise<void> {
|
||||
// Load persisted definitions
|
||||
const savedDefs = await this.storage.getMetadata(DEFINITIONS_KEY) as any
|
||||
if (savedDefs && typeof savedDefs === 'object' && savedDefs.definitions) {
|
||||
const defs = savedDefs.definitions as Array<AggregateDefinition & { _hash?: string }>
|
||||
|
||||
for (const def of defs) {
|
||||
this.definitions.set(def.name, def)
|
||||
const currentHash = hashDefinition(def)
|
||||
const savedHash = def._hash || ''
|
||||
|
||||
// Load persisted state
|
||||
const stateData = await this.storage.getMetadata(`${STATE_KEY_PREFIX}${def.name}__`) as any
|
||||
if (stateData && stateData.groups && savedHash === currentHash) {
|
||||
// Definition unchanged — load state
|
||||
const groupMap = new Map<string, AggregateGroupState>()
|
||||
for (const group of stateData.groups as AggregateGroupState[]) {
|
||||
const serialized = serializeGroupKey(group.groupKey)
|
||||
groupMap.set(serialized, group)
|
||||
}
|
||||
this.states.set(def.name, groupMap)
|
||||
} else {
|
||||
// Definition changed or no saved state — start fresh (will be rebuilt)
|
||||
this.states.set(def.name, new Map())
|
||||
}
|
||||
|
||||
this.definitionHashes.set(def.name, currentHash)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Persist all dirty aggregate state to storage.
|
||||
*/
|
||||
async flush(): Promise<void> {
|
||||
// Persist definitions
|
||||
const defsToSave = Array.from(this.definitions.values()).map(def => ({
|
||||
...def,
|
||||
_hash: this.definitionHashes.get(def.name)
|
||||
}))
|
||||
await this.storage.saveMetadata(DEFINITIONS_KEY, { definitions: defsToSave } as any)
|
||||
|
||||
// Persist dirty states
|
||||
for (const name of this.dirty) {
|
||||
const stateMap = this.states.get(name)
|
||||
if (stateMap) {
|
||||
const groups = Array.from(stateMap.values())
|
||||
await this.storage.saveMetadata(
|
||||
`${STATE_KEY_PREFIX}${name}__`,
|
||||
{ groups } as any
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
this.dirty.clear()
|
||||
}
|
||||
|
||||
/**
|
||||
* Flush and release resources.
|
||||
*/
|
||||
async close(): Promise<void> {
|
||||
await this.flush()
|
||||
}
|
||||
|
||||
// ============= Definition Management =============
|
||||
|
||||
/**
|
||||
* Register a new aggregate definition. Persisted on next flush().
|
||||
*/
|
||||
defineAggregate(def: AggregateDefinition): void {
|
||||
if (!def.name) throw new Error('Aggregate definition requires a name')
|
||||
if (!def.groupBy || def.groupBy.length === 0) throw new Error('Aggregate definition requires at least one groupBy dimension')
|
||||
if (!def.metrics || Object.keys(def.metrics).length === 0) throw new Error('Aggregate definition requires at least one metric')
|
||||
|
||||
// Validate metric definitions
|
||||
for (const [name, metric] of Object.entries(def.metrics)) {
|
||||
if (metric.op !== 'count' && !metric.field) {
|
||||
throw new Error(`Metric '${name}' with op '${metric.op}' requires a 'field' property`)
|
||||
}
|
||||
}
|
||||
|
||||
const newHash = hashDefinition(def)
|
||||
const oldHash = this.definitionHashes.get(def.name)
|
||||
|
||||
this.definitions.set(def.name, def)
|
||||
this.definitionHashes.set(def.name, newHash)
|
||||
|
||||
// Reset state if definition changed or doesn't exist yet
|
||||
if (!this.states.has(def.name) || (oldHash && oldHash !== newHash)) {
|
||||
this.states.set(def.name, new Map())
|
||||
}
|
||||
|
||||
this.dirty.add(def.name)
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove an aggregate definition and its state.
|
||||
*/
|
||||
removeAggregate(name: string): void {
|
||||
this.definitions.delete(name)
|
||||
this.definitionHashes.delete(name)
|
||||
this.states.delete(name)
|
||||
this.staleMinMax.delete(name)
|
||||
this.dirty.add(name) // Will persist the removal
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all registered aggregate definitions.
|
||||
*/
|
||||
getDefinitions(): AggregateDefinition[] {
|
||||
return Array.from(this.definitions.values())
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if an aggregate exists.
|
||||
*/
|
||||
hasAggregate(name: string): boolean {
|
||||
return this.definitions.has(name)
|
||||
}
|
||||
|
||||
// ============= Write-Time Hooks =============
|
||||
|
||||
/**
|
||||
* Called when an entity is added. Updates all matching aggregates.
|
||||
*/
|
||||
onEntityAdded(id: string, entity: Record<string, unknown>): void {
|
||||
if (isAggregateEntity(entity)) return
|
||||
|
||||
for (const [name, def] of this.definitions) {
|
||||
if (!matchesSource(entity, def.source)) continue
|
||||
|
||||
if (this.nativeProvider) {
|
||||
const results = this.nativeProvider.incrementalUpdate(name, def, entity, 'add')
|
||||
this.applyNativeResults(name, results)
|
||||
continue
|
||||
}
|
||||
|
||||
const groupKey = computeGroupKey(entity, def.groupBy)
|
||||
const serialized = serializeGroupKey(groupKey)
|
||||
const stateMap = this.states.get(name)!
|
||||
let group = stateMap.get(serialized)
|
||||
|
||||
if (!group) {
|
||||
group = {
|
||||
groupKey,
|
||||
metrics: {},
|
||||
lastUpdated: Date.now()
|
||||
}
|
||||
// Initialize all metrics
|
||||
for (const metricName of Object.keys(def.metrics)) {
|
||||
group.metrics[metricName] = freshMetricState()
|
||||
}
|
||||
stateMap.set(serialized, group)
|
||||
}
|
||||
|
||||
// Increment each metric
|
||||
for (const [metricName, metricDef] of Object.entries(def.metrics)) {
|
||||
const state = group.metrics[metricName]
|
||||
if (metricDef.op === 'count') {
|
||||
state.count++
|
||||
state.sum++
|
||||
} else {
|
||||
const val = getNumericField(entity, metricDef.field!)
|
||||
if (val !== undefined) {
|
||||
state.sum += val
|
||||
state.count++
|
||||
if (val < state.min) state.min = val
|
||||
if (val > state.max) state.max = val
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
group.lastUpdated = Date.now()
|
||||
this.dirty.add(name)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Called when an entity is updated. Reverses old contribution and applies new.
|
||||
*/
|
||||
onEntityUpdated(
|
||||
id: string,
|
||||
newEntity: Record<string, unknown>,
|
||||
oldEntity: Record<string, unknown>
|
||||
): void {
|
||||
if (isAggregateEntity(newEntity)) return
|
||||
|
||||
for (const [name, def] of this.definitions) {
|
||||
const oldMatches = matchesSource(oldEntity, def.source)
|
||||
const newMatches = matchesSource(newEntity, def.source)
|
||||
|
||||
if (this.nativeProvider && (oldMatches || newMatches)) {
|
||||
const results = this.nativeProvider.incrementalUpdate(name, def, newEntity, 'update', oldEntity)
|
||||
this.applyNativeResults(name, results)
|
||||
continue
|
||||
}
|
||||
|
||||
// If old matched, remove its contribution
|
||||
if (oldMatches) {
|
||||
this.removeContribution(name, def, oldEntity)
|
||||
}
|
||||
|
||||
// If new matches, add its contribution
|
||||
if (newMatches) {
|
||||
this.addContribution(name, def, newEntity)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Called when an entity is deleted. Reverses its contribution.
|
||||
*/
|
||||
onEntityDeleted(id: string, entity: Record<string, unknown>): void {
|
||||
if (isAggregateEntity(entity)) return
|
||||
|
||||
for (const [name, def] of this.definitions) {
|
||||
if (!matchesSource(entity, def.source)) continue
|
||||
|
||||
if (this.nativeProvider) {
|
||||
const results = this.nativeProvider.incrementalUpdate(name, def, entity, 'delete')
|
||||
this.applyNativeResults(name, results)
|
||||
continue
|
||||
}
|
||||
|
||||
this.removeContribution(name, def, entity)
|
||||
}
|
||||
}
|
||||
|
||||
// ============= Query =============
|
||||
|
||||
/**
|
||||
* Query aggregate results with optional filtering, sorting, and pagination.
|
||||
*/
|
||||
queryAggregate(params: AggregateQueryParams): AggregateResult[] {
|
||||
const def = this.definitions.get(params.name)
|
||||
if (!def) throw new Error(`Aggregate '${params.name}' not found`)
|
||||
|
||||
const stateMap = this.states.get(params.name)
|
||||
if (!stateMap) return []
|
||||
|
||||
if (this.nativeProvider) {
|
||||
return this.nativeProvider.queryAggregate(stateMap, params)
|
||||
}
|
||||
|
||||
// Collect all groups
|
||||
let results: AggregateResult[] = []
|
||||
|
||||
for (const group of stateMap.values()) {
|
||||
// Skip empty groups (all metrics at zero count)
|
||||
const hasData = Object.values(group.metrics).some(m => m.count > 0)
|
||||
if (!hasData) continue
|
||||
|
||||
// Apply where filter on group keys
|
||||
if (params.where && Object.keys(params.where).length > 0) {
|
||||
if (!matchesMetadataFilter(group.groupKey as any, params.where)) continue
|
||||
}
|
||||
|
||||
// Compute result metrics from running state
|
||||
const metrics: Record<string, number> = {}
|
||||
let totalCount = 0
|
||||
|
||||
for (const [metricName, metricDef] of Object.entries(def.metrics)) {
|
||||
const state = group.metrics[metricName]
|
||||
if (!state) continue
|
||||
|
||||
switch (metricDef.op) {
|
||||
case 'count':
|
||||
metrics[metricName] = state.count
|
||||
break
|
||||
case 'sum':
|
||||
metrics[metricName] = state.sum
|
||||
break
|
||||
case 'avg':
|
||||
metrics[metricName] = state.count > 0 ? state.sum / state.count : 0
|
||||
break
|
||||
case 'min':
|
||||
metrics[metricName] = state.min === Infinity ? 0 : state.min
|
||||
break
|
||||
case 'max':
|
||||
metrics[metricName] = state.max === -Infinity ? 0 : state.max
|
||||
break
|
||||
}
|
||||
|
||||
if (metricDef.op === 'count') {
|
||||
totalCount = Math.max(totalCount, state.count)
|
||||
} else {
|
||||
totalCount = Math.max(totalCount, state.count)
|
||||
}
|
||||
}
|
||||
|
||||
results.push({
|
||||
groupKey: { ...group.groupKey },
|
||||
metrics,
|
||||
count: totalCount,
|
||||
entityId: group.materializedEntityId
|
||||
})
|
||||
}
|
||||
|
||||
// Sort
|
||||
if (params.orderBy) {
|
||||
const field = params.orderBy
|
||||
const dir = params.order === 'desc' ? -1 : 1
|
||||
results.sort((a, b) => {
|
||||
// Try metrics first, then groupKey
|
||||
const aVal = a.metrics[field] ?? a.groupKey[field] ?? 0
|
||||
const bVal = b.metrics[field] ?? b.groupKey[field] ?? 0
|
||||
if (typeof aVal === 'number' && typeof bVal === 'number') {
|
||||
return (aVal - bVal) * dir
|
||||
}
|
||||
return String(aVal).localeCompare(String(bVal)) * dir
|
||||
})
|
||||
}
|
||||
|
||||
// Pagination
|
||||
const offset = params.offset || 0
|
||||
const limit = params.limit || results.length
|
||||
results = results.slice(offset, offset + limit)
|
||||
|
||||
return results
|
||||
}
|
||||
|
||||
/**
|
||||
* Get internal state for a named aggregate (for materialization and testing).
|
||||
*/
|
||||
getState(name: string): Map<string, AggregateGroupState> | undefined {
|
||||
return this.states.get(name)
|
||||
}
|
||||
|
||||
// ============= Internal Helpers =============
|
||||
|
||||
/**
|
||||
* Add an entity's contribution to its matching group in a named aggregate.
|
||||
*/
|
||||
private addContribution(
|
||||
aggName: string,
|
||||
def: AggregateDefinition,
|
||||
entity: Record<string, unknown>
|
||||
): void {
|
||||
const groupKey = computeGroupKey(entity, def.groupBy)
|
||||
const serialized = serializeGroupKey(groupKey)
|
||||
const stateMap = this.states.get(aggName)!
|
||||
let group = stateMap.get(serialized)
|
||||
|
||||
if (!group) {
|
||||
group = {
|
||||
groupKey,
|
||||
metrics: {},
|
||||
lastUpdated: Date.now()
|
||||
}
|
||||
for (const metricName of Object.keys(def.metrics)) {
|
||||
group.metrics[metricName] = freshMetricState()
|
||||
}
|
||||
stateMap.set(serialized, group)
|
||||
}
|
||||
|
||||
for (const [metricName, metricDef] of Object.entries(def.metrics)) {
|
||||
const state = group.metrics[metricName]
|
||||
if (metricDef.op === 'count') {
|
||||
state.count++
|
||||
state.sum++
|
||||
} else {
|
||||
const val = getNumericField(entity, metricDef.field!)
|
||||
if (val !== undefined) {
|
||||
state.sum += val
|
||||
state.count++
|
||||
if (val < state.min) state.min = val
|
||||
if (val > state.max) state.max = val
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
group.lastUpdated = Date.now()
|
||||
this.dirty.add(aggName)
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove an entity's contribution from its matching group.
|
||||
* For MIN/MAX, marks as stale since we can't incrementally reverse these.
|
||||
*/
|
||||
private removeContribution(
|
||||
aggName: string,
|
||||
def: AggregateDefinition,
|
||||
entity: Record<string, unknown>
|
||||
): void {
|
||||
const groupKey = computeGroupKey(entity, def.groupBy)
|
||||
const serialized = serializeGroupKey(groupKey)
|
||||
const stateMap = this.states.get(aggName)!
|
||||
const group = stateMap.get(serialized)
|
||||
|
||||
if (!group) return
|
||||
|
||||
for (const [metricName, metricDef] of Object.entries(def.metrics)) {
|
||||
const state = group.metrics[metricName]
|
||||
if (metricDef.op === 'count') {
|
||||
state.count = Math.max(0, state.count - 1)
|
||||
state.sum = Math.max(0, state.sum - 1)
|
||||
} else {
|
||||
const val = getNumericField(entity, metricDef.field!)
|
||||
if (val !== undefined) {
|
||||
state.sum -= val
|
||||
state.count = Math.max(0, state.count - 1)
|
||||
|
||||
// MIN/MAX can't be decremented — mark as potentially stale
|
||||
// On next read, if the deleted value was the min or max, it will be off.
|
||||
// For correctness at scale, a full rebuild would be needed.
|
||||
// In practice, stale min/max is acceptable for most use cases.
|
||||
if (val <= state.min || val >= state.max) {
|
||||
if (!this.staleMinMax.has(aggName)) {
|
||||
this.staleMinMax.set(aggName, new Set())
|
||||
}
|
||||
this.staleMinMax.get(aggName)!.add(`${serialized}:${metricName}`)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Remove group if all metrics are empty
|
||||
const allEmpty = Object.values(group.metrics).every(m => m.count === 0)
|
||||
if (allEmpty) {
|
||||
stateMap.delete(serialized)
|
||||
} else {
|
||||
group.lastUpdated = Date.now()
|
||||
}
|
||||
|
||||
this.dirty.add(aggName)
|
||||
}
|
||||
|
||||
/**
|
||||
* Apply results from native provider back into the state maps.
|
||||
*/
|
||||
private applyNativeResults(aggName: string, results: AggregateGroupState[]): void {
|
||||
const stateMap = this.states.get(aggName)!
|
||||
for (const group of results) {
|
||||
const serialized = serializeGroupKey(group.groupKey)
|
||||
stateMap.set(serialized, group)
|
||||
}
|
||||
this.dirty.add(aggName)
|
||||
}
|
||||
}
|
||||
|
||||
// Export helper for use by materializer
|
||||
export { serializeGroupKey, computeGroupKey, matchesSource, isAggregateEntity }
|
||||
Loading…
Add table
Add a link
Reference in a new issue