fix: metadata index not cleaned up after delete/deleteMany

Three bugs caused deleted entities to persist in the metadata index:

1. idMapper never cleaned up — EntityIdMapper accumulated UUID→int mappings
   permanently. idMapper.getAllIntIds() is used as the universe for ne and
   exists:false operators, so deleted entities returned in those queries
   indefinitely. Fix: removeFromIndex() now calls idMapper.remove(id) and
   idMapper.flush() after all bitmap operations complete (must be last because
   removeFromChunk() reads idMapper.getInt(id) internally).

2. Optional fields indexed as __NULL__ but never unindexed — entityForIndexing
   in add() included confidence, weight, and createdBy as explicit keys even
   when undefined. Object.entries() preserves undefined-valued keys so
   extractIndexableFields() indexed them as '__NULL__' bitmap entries.
   storageMetadata omitted those keys via conditional spreading, so
   removeFromIndex() passed a structure without those keys and never cleaned
   them up. Fix: entityForIndexing now uses conditional spreading for
   confidence, weight, and createdBy matching storageMetadata exactly.

3. result.successful updated before transaction commits — deleteMany() pushed
   ids to result.successful inside the transaction builder, before
   transaction.execute() ran. A rollback would leave result.successful
   containing ids that were never actually deleted. Fix: queued ids are held
   in a local chunkQueued array and moved to result.successful only after
   executeTransaction() resolves without throwing.

Adds regression test suite (14 tests) covering delete() and deleteMany() for
type-index cleanup, ne operator, exists:false operator, optional-field indexing,
and partial deletion correctness.

Reported by wickworks team.
This commit is contained in:
David Snelling 2026-02-18 15:33:56 -08:00
parent cc286ba2fc
commit 1a628daa83
3 changed files with 365 additions and 13 deletions

View file

@ -791,19 +791,23 @@ export class Brainy<T = any> implements BrainyInterface<T> {
} }
// Build entity structure for indexing (NEW - with top-level fields) // Build entity structure for indexing (NEW - with top-level fields)
// Optional fields must use conditional spreading to match storageMetadata exactly.
// If undefined values are included as explicit keys, extractIndexableFields indexes
// them as '__NULL__' entries that removeFromIndex can never clean up (storageMetadata
// omits those keys entirely via conditional spreading, so the fields don't match).
const entityForIndexing = { const entityForIndexing = {
id, id,
vector, vector,
connections: new Map(), connections: new Map(),
level: 0, level: 0,
type: params.type, type: params.type,
confidence: params.confidence, ...(params.confidence !== undefined && { confidence: params.confidence }),
weight: params.weight, ...(params.weight !== undefined && { weight: params.weight }),
createdAt: Date.now(), createdAt: Date.now(),
updatedAt: Date.now(), updatedAt: Date.now(),
service: params.service, service: params.service,
data: params.data, data: params.data,
createdBy: params.createdBy, ...(params.createdBy && { createdBy: params.createdBy }),
// Only custom fields in metadata // Only custom fields in metadata
metadata: params.metadata || {} metadata: params.metadata || {}
} }
@ -2780,6 +2784,13 @@ export class Brainy<T = any> implements BrainyInterface<T> {
for (let i = 0; i < idsToDelete.length; i += chunkSize) { for (let i = 0; i < idsToDelete.length; i += chunkSize) {
const chunk = idsToDelete.slice(i, i + chunkSize) const chunk = idsToDelete.slice(i, i + chunkSize)
// Track IDs queued during builder phase separately from confirmed deletions.
// result.successful must only be updated AFTER the transaction commits — pushing
// inside the builder runs before transaction.execute(), so a rollback would leave
// successfully-queued IDs incorrectly listed as deleted.
const chunkQueued: string[] = []
const chunkBuilderFailed: Array<{ item: string; error: string }> = []
try { try {
// Process chunk in single transaction for atomic deletion // Process chunk in single transaction for atomic deletion
await this.transactionManager.executeTransaction(async (tx) => { await this.transactionManager.executeTransaction(async (tx) => {
@ -2818,9 +2829,9 @@ export class Brainy<T = any> implements BrainyInterface<T> {
) )
} }
result.successful.push(id) chunkQueued.push(id)
} catch (error) { } catch (error) {
result.failed.push({ chunkBuilderFailed.push({
item: id, item: id,
error: (error as Error).message error: (error as Error).message
}) })
@ -2830,16 +2841,19 @@ export class Brainy<T = any> implements BrainyInterface<T> {
} }
} }
}) })
// Transaction committed — queued IDs were actually deleted
result.successful.push(...chunkQueued)
result.failed.push(...chunkBuilderFailed)
} catch (error) { } catch (error) {
// Transaction failed - mark remaining entities in chunk as failed if not already recorded // Transaction failed/rolled back — queued IDs were NOT deleted
for (const id of chunk) { result.failed.push(...chunkBuilderFailed)
if (!result.successful.includes(id) && !result.failed.find(f => f.item === id)) { for (const id of chunkQueued) {
result.failed.push({ result.failed.push({
item: id, item: id,
error: (error as Error).message error: (error as Error).message
}) })
} }
}
// Stop processing if continueOnError is false // Stop processing if continueOnError is false
if (!params.continueOnError) { if (!params.continueOnError) {

View file

@ -1667,6 +1667,12 @@ export class MetadataIndexManager {
// Flush all dirty chunks and sparse indices accumulated during remove // Flush all dirty chunks and sparse indices accumulated during remove
await this.flushDirtyMetadata() await this.flushDirtyMetadata()
// Clean up ID mapper — must happen AFTER bitmap removal since removeFromChunk
// calls idMapper.getInt(id) internally. Skipping this leaves deleted IDs in the
// idMapper universe, causing ne/exists:false queries to return deleted entities.
this.idMapper.remove(id)
await this.idMapper.flush()
} else { } else {
// Remove from all indexes (slower, requires scanning all field indexes) // Remove from all indexes (slower, requires scanning all field indexes)
// This should be rare - prefer providing metadata when removing // This should be rare - prefer providing metadata when removing
@ -1697,6 +1703,10 @@ export class MetadataIndexManager {
// Flush all dirty chunks and sparse indices accumulated during scan-remove // Flush all dirty chunks and sparse indices accumulated during scan-remove
await this.flushDirtyMetadata() await this.flushDirtyMetadata()
// Clean up ID mapper — must happen AFTER bitmap removal (same reason as fast path above)
this.idMapper.remove(id)
await this.idMapper.flush()
} }
} }

View file

@ -0,0 +1,328 @@
/**
* Regression tests: metadata index cleanup after delete / deleteMany
*
* Bug report (wickworks): brain.deleteMany() was not removing metadata index
* entries for deleted entities. The same defect also existed in delete().
*
* Root causes fixed:
*
* 1. idMapper not cleaned up EntityIdMapper accumulated all entity UUIDint
* mappings and never removed them on deletion. idMapper.getAllIntIds() is used
* as the "universe" for `ne` and `exists:false` operators, so deleted entities
* continued to appear in those query results forever.
* Fix: removeFromIndex() now calls idMapper.remove(id) + idMapper.flush()
* AFTER all bitmap operations complete.
*
* 2. Optional fields indexed as __NULL__ but never unindexed entityForIndexing
* in add() included confidence/weight/createdBy as explicit keys even when
* undefined. Object.entries() preserves keys with undefined values, so
* extractIndexableFields() indexed them as '__NULL__'. storageMetadata omitted
* those keys entirely via conditional spreading, so removeFromIndex() never
* cleaned up those bitmap entries.
* Fix: entityForIndexing now uses the same conditional spreading pattern as
* storageMetadata for confidence, weight, and createdBy.
*
* 3. result.successful updated inside transaction builder deleteMany() pushed
* ids to result.successful during the builder phase, before transaction.execute()
* ran. A transaction rollback would leave result.successful containing ids that
* were never actually deleted.
* Fix: queued ids are held in a local array and moved to result.successful only
* after executeTransaction() resolves without error.
*/
import { describe, it, expect, beforeEach, afterEach } from 'vitest'
import { Brainy } from '../../src/brainy.js'
// 384 dimensions matches the default WASM embedding model loaded during brain.init().
// Passing an explicit vector skips AI embedding while remaining dimension-compatible.
const DIM = 384
const makeVec = (seed = 1) =>
new Float32Array(DIM).map((_, i) => ((i + seed) % DIM) / DIM)
describe('Metadata index cleanup after delete / deleteMany', () => {
let brain: Brainy
beforeEach(async () => {
brain = new Brainy({ storage: { type: 'memory' } })
await brain.init()
})
afterEach(async () => {
await brain.close()
})
// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------
async function addEntity(opts: {
type?: string
service?: string
metadata?: Record<string, unknown>
confidence?: number
weight?: number
} = {}): Promise<string> {
return brain.add({
data: 'test',
vector: makeVec(),
type: (opts.type ?? 'thing') as any,
...(opts.service !== undefined && { service: opts.service }),
...(opts.metadata !== undefined && { metadata: opts.metadata }),
...(opts.confidence !== undefined && { confidence: opts.confidence }),
...(opts.weight !== undefined && { weight: opts.weight }),
})
}
// ---------------------------------------------------------------------------
// delete() — single entity
// ---------------------------------------------------------------------------
describe('delete()', () => {
it('removes entity from type index so find({ type }) returns 0', async () => {
const id = await addEntity({ type: 'product' })
await brain.delete(id)
const results = await brain.find({ type: 'product' as any })
expect(results).toHaveLength(0)
})
it('removes entity from ne operator universe', async () => {
// Add one entity with service 'alpha', delete it.
// A ne:'beta' query should return 0, not the deleted entity.
const id = await addEntity({ service: 'alpha', type: 'thing' })
await brain.delete(id)
const results = await brain.find({ where: { service: { ne: 'beta' } } })
const ids = results.map(r => r.id)
expect(ids).not.toContain(id)
})
it('removes entity from exists:false results', async () => {
// Entity added without a custom 'archivedAt' field.
// After deletion it must not appear in an exists:false query.
const id = await addEntity({ type: 'thing' })
await brain.delete(id)
const results = await brain.find({ where: { archivedAt: { exists: false } } })
const ids = results.map(r => r.id)
expect(ids).not.toContain(id)
})
})
// ---------------------------------------------------------------------------
// deleteMany() — batch deletion
// ---------------------------------------------------------------------------
describe('deleteMany()', () => {
it('removes all entities from type index so find({ type }) returns 0', async () => {
const ids = await Promise.all([
addEntity({ type: 'concept' }),
addEntity({ type: 'concept' }),
addEntity({ type: 'concept' }),
])
await brain.deleteMany({ ids })
const results = await brain.find({ type: 'concept' as any, limit: 50 })
expect(results).toHaveLength(0)
})
it('removes deleted entities from ne operator universe', async () => {
// Three entities with service:'alpha', two with service:'beta'.
// Delete the alpha ones. A ne:'beta' query must return 0, not the deleted alphas.
const alphaIds = await Promise.all([
addEntity({ service: 'alpha', type: 'thing' }),
addEntity({ service: 'alpha', type: 'thing' }),
addEntity({ service: 'alpha', type: 'thing' }),
])
const betaIds = await Promise.all([
addEntity({ service: 'beta', type: 'thing' }),
addEntity({ service: 'beta', type: 'thing' }),
])
await brain.deleteMany({ ids: alphaIds })
const results = await brain.find({ where: { service: { ne: 'beta' } } })
const resultIds = results.map(r => r.id)
// Deleted alpha entities must not appear
for (const id of alphaIds) {
expect(resultIds).not.toContain(id)
}
// Surviving beta entities are outside the ne:'beta' exclusion so also absent — that's fine
// The key assertion is zero deleted entities in results
expect(resultIds.filter(id => alphaIds.includes(id))).toHaveLength(0)
void betaIds // referenced to document intent
})
it('removes deleted entities from exists:false results', async () => {
// Three entities WITHOUT a custom field 'closedAt'.
// After deletion they must not appear in an exists:false query.
const deletedIds = await Promise.all([
addEntity({ type: 'thing', metadata: { region: 'us' } }),
addEntity({ type: 'thing', metadata: { region: 'eu' } }),
addEntity({ type: 'thing', metadata: { region: 'ap' } }),
])
// One surviving entity also without closedAt — it SHOULD appear in results
const survivorId = await addEntity({ type: 'thing', metadata: { region: 'us', active: true } })
await brain.deleteMany({ ids: deletedIds })
const results = await brain.find({ where: { closedAt: { exists: false } } })
const resultIds = results.map(r => r.id)
// Deleted entities must be absent
for (const id of deletedIds) {
expect(resultIds).not.toContain(id)
}
// The surviving entity without closedAt should still be findable
expect(resultIds).toContain(survivorId)
})
it('result.successful contains only ids whose deletions were committed', async () => {
const ids = await Promise.all([
addEntity({ type: 'thing' }),
addEntity({ type: 'thing' }),
addEntity({ type: 'thing' }),
])
const result = await brain.deleteMany({ ids })
// All should succeed — verify successful list is correct
expect(result.successful).toHaveLength(ids.length)
expect(result.failed).toHaveLength(0)
for (const id of ids) {
expect(result.successful).toContain(id)
}
// Entities must actually be gone from storage
for (const id of ids) {
const entity = await brain.get(id)
expect(entity).toBeNull()
}
})
it('handles empty ids array gracefully', async () => {
const result = await brain.deleteMany({ ids: [] })
expect(result.successful).toHaveLength(0)
expect(result.failed).toHaveLength(0)
})
it('handles large batch (> 1 chunk) without leaving stale index entries', async () => {
// 25 entities → 3 transaction chunks of 10, 10, 5
const ids = await Promise.all(
Array.from({ length: 25 }, (_, i) => addEntity({ type: 'document', metadata: { i } }))
)
const result = await brain.deleteMany({ ids })
expect(result.successful).toHaveLength(25)
expect(result.failed).toHaveLength(0)
// No document should survive in the index
const remaining = await brain.find({ type: 'document' as any, limit: 100 })
expect(remaining).toHaveLength(0)
// No deleted entity should appear in a ne query
const neResults = await brain.find({ where: { i: { exists: true } } })
const leftoverIds = neResults.map(r => r.id).filter(id => ids.includes(id))
expect(leftoverIds).toHaveLength(0)
})
})
// ---------------------------------------------------------------------------
// Optional-field indexing (Fix 2)
// ---------------------------------------------------------------------------
describe('optional field indexing', () => {
it('entity added without confidence does not appear in confidence:exists:true query', async () => {
// Without Fix 2, undefined confidence was indexed as __NULL__, making it appear
// as though the entity has a confidence value in the sparse index.
const noConfidenceId = await addEntity({ type: 'thing' })
const withConfidenceId = await addEntity({ type: 'thing', confidence: 0.9 })
const results = await brain.find({ where: { confidence: { exists: true } } })
const ids = results.map(r => r.id)
expect(ids).toContain(withConfidenceId)
expect(ids).not.toContain(noConfidenceId)
})
it('entity added without weight does not appear in weight:exists:true query', async () => {
const noWeightId = await addEntity({ type: 'thing' })
const withWeightId = await addEntity({ type: 'thing', weight: 0.5 })
const results = await brain.find({ where: { weight: { exists: true } } })
const ids = results.map(r => r.id)
expect(ids).toContain(withWeightId)
expect(ids).not.toContain(noWeightId)
})
it('deleting entity without optional fields leaves no orphaned __NULL__ entries', async () => {
// Add and delete an entity that has no confidence or weight.
// After deletion the confidence/__NULL__ and weight/__NULL__ bitmap entries
// (if any were created) must not be surfaced through any query.
const id = await addEntity({ type: 'thing' })
await brain.delete(id)
// Entity must not appear in any confidence query
const existsTrue = await brain.find({ where: { confidence: { exists: true } } })
expect(existsTrue.map(r => r.id)).not.toContain(id)
const existsFalse = await brain.find({ where: { confidence: { exists: false } } })
expect(existsFalse.map(r => r.id)).not.toContain(id)
})
})
// ---------------------------------------------------------------------------
// Survivors are unaffected
// ---------------------------------------------------------------------------
describe('partial deleteMany does not affect surviving entities', () => {
it('surviving entities remain queryable after deleting others of the same type', async () => {
const toDelete = await Promise.all([
addEntity({ type: 'collection', metadata: { group: 'a' } }),
addEntity({ type: 'collection', metadata: { group: 'a' } }),
])
const survivors = await Promise.all([
addEntity({ type: 'collection', metadata: { group: 'b' } }),
addEntity({ type: 'collection', metadata: { group: 'b' } }),
addEntity({ type: 'collection', metadata: { group: 'b' } }),
])
await brain.deleteMany({ ids: toDelete })
const results = await brain.find({ type: 'collection' as any, limit: 50 })
const resultIds = results.map(r => r.id)
// All survivors present
for (const id of survivors) {
expect(resultIds).toContain(id)
}
// Deleted entities absent
for (const id of toDelete) {
expect(resultIds).not.toContain(id)
}
})
it('delete() of one entity does not affect siblings in same type', async () => {
const a = await addEntity({ type: 'task', service: 'svc' })
const b = await addEntity({ type: 'task', service: 'svc' })
const c = await addEntity({ type: 'task', service: 'svc' })
await brain.delete(a)
const results = await brain.find({ type: 'task' as any, limit: 50 })
const ids = results.map(r => r.id)
expect(ids).not.toContain(a)
expect(ids).toContain(b)
expect(ids).toContain(c)
})
})
})