feat(open): open never waits for a provider that is rebuilding itself
MEASURED on a production store: a metadata provider that had to rebuild made init() pay the ENTIRE rebuild on the foreground — 641 seconds — with every other family idle behind it. The cause is a missing distinction: a provider reporting serving:false because it is BUSY BUILDING ITSELF and one reporting serving:false because it is BROKEN looked identical through healthReport(), and both were answered the same way — call rebuild(), and wait for it. The contract that tells them apart is one optional, synchronous, O(1) hook: `rebuildInProgress(): ProviderRebuildProgress | null`, reporting a phase name and whatever the provider actually measures (done/total/startedAt) — never an estimate dressed as a fact. A provider without the hook behaves exactly as before. With it, a provider owns its own rebuild: - the open gate neither starts a second rebuild nor waits for the provider's, and narrates that it is not waiting and what will refuse meanwhile; - init() returns and every other family serves; - that family's doors refuse BY NAME, carrying the provider's own progress, and say plainly that the door opens by itself and no action is needed — distinct from a broken index, which names repairIndex(); - the epoch stamp does not advance while any family is still being built. Nothing is ever served empty: a not-serving family refuses, as it already did. Pins: tests/integration/open-does-not-wait-for-a-rebuilding-provider.test.ts — init() returns in milliseconds against a provider claiming a 6s rebuild, brainy starts no rebuild of its own, a filtered read refuses naming the phase and the 4,096/14,056 progress, and the door answers once the provider reports serving. The pin fails loudly rather than vacuously if its stub never installs.
This commit is contained in:
parent
f5a6cb3f61
commit
131daa08cd
3 changed files with 306 additions and 4 deletions
|
|
@ -198,7 +198,12 @@ import {
|
|||
import { isDeterministicEmbedMode } from './embeddings/deterministicEmbedMode.js'
|
||||
import { GenerationConflictError, StoreInconsistentError } from './db/errors.js'
|
||||
import { BrainyError, GraphIndexNotReadyError, MetadataIndexNotReadyError, MigrationInProgressError, VectorIndexNotReadyError } from './errors/brainyError.js'
|
||||
import { assessIndexReadiness, assessProviderHealth } from './utils/indexReadiness.js'
|
||||
import {
|
||||
assessIndexReadiness,
|
||||
assessProviderHealth,
|
||||
assessProviderRebuild,
|
||||
describeRebuildProgress
|
||||
} from './utils/indexReadiness.js'
|
||||
import { reconstructNounWrapper } from './db/factLog.js'
|
||||
import { asBrainyFieldRefusal } from './db/fieldAddressing.js'
|
||||
import {
|
||||
|
|
@ -4540,6 +4545,19 @@ export class Brainy<T = any> implements BrainyInterface<T> {
|
|||
this._graphAdjacencyVerified = true
|
||||
return 'live'
|
||||
}
|
||||
// A provider that is REBUILDING ITSELF gets a refusal that says so,
|
||||
// with its own progress: open deliberately did not wait for it (see
|
||||
// rebuildIndexesIfNeeded), so this door is temporarily closed and will
|
||||
// open on its own. Anything else is a broken index needing a repair.
|
||||
const rebuilding = assessProviderRebuild(this.graphIndex)
|
||||
if (rebuilding) {
|
||||
throw new GraphIndexNotReadyError(
|
||||
`Graph adjacency index is ${describeRebuildProgress(rebuilding)} and is not serving ` +
|
||||
`yet. find({ connected }), neighbors() and related() refuse rather than serve an ` +
|
||||
`empty result. The brain is open and every other family is serving; this door opens ` +
|
||||
`by itself when the provider reports serving — no action is needed.`
|
||||
)
|
||||
}
|
||||
throw new GraphIndexNotReadyError(
|
||||
`Graph adjacency index is not serving (via ${assessment.via}): ` +
|
||||
`${assessment.reasons.join('; ') || 'not ready'}. find({ connected }), neighbors() and ` +
|
||||
|
|
@ -4643,6 +4661,15 @@ export class Brainy<T = any> implements BrainyInterface<T> {
|
|||
this._metadataVerified = true
|
||||
return 'live'
|
||||
}
|
||||
const rebuilding = assessProviderRebuild(this.metadataIndex)
|
||||
if (rebuilding) {
|
||||
throw new MetadataIndexNotReadyError(
|
||||
`Metadata field index is ${describeRebuildProgress(rebuilding)} and is not serving ` +
|
||||
`yet. find({ where }) and other filtered reads refuse rather than serve an empty ` +
|
||||
`result. The brain is open and every other family is serving; this door opens by ` +
|
||||
`itself when the provider reports serving — no action is needed.`
|
||||
)
|
||||
}
|
||||
throw new MetadataIndexNotReadyError(
|
||||
`Metadata field index is not serving (via ${assessment.via}): ` +
|
||||
`${assessment.reasons.join('; ') || 'not ready'}. find({ where }) and other filtered ` +
|
||||
|
|
@ -4772,6 +4799,15 @@ export class Brainy<T = any> implements BrainyInterface<T> {
|
|||
this._vectorVerified = true
|
||||
return 'live'
|
||||
}
|
||||
const rebuilding = assessProviderRebuild(this.index)
|
||||
if (rebuilding) {
|
||||
throw new VectorIndexNotReadyError(
|
||||
`Vector index is ${describeRebuildProgress(rebuilding)} and is not serving yet. ` +
|
||||
`Semantic find({ query }) and proximity search refuse rather than serve an empty ` +
|
||||
`result. The brain is open and every other family is serving; this door opens by ` +
|
||||
`itself when the provider reports serving — no action is needed.`
|
||||
)
|
||||
}
|
||||
throw new VectorIndexNotReadyError(
|
||||
`Vector index is not serving (via ${assessment.via}): ` +
|
||||
`${assessment.reasons.join('; ') || 'not ready'}. Semantic find({ query }) and ` +
|
||||
|
|
@ -17144,6 +17180,19 @@ export class Brainy<T = any> implements BrainyInterface<T> {
|
|||
}
|
||||
|
||||
if (assessment.readiness === 'not-ready') {
|
||||
// A provider REBUILDING ITSELF gets a refusal that says so, with its
|
||||
// own progress: open deliberately did not wait for it, this door is
|
||||
// temporarily closed, and it opens by itself. Distinct from a broken
|
||||
// index, which needs an operator.
|
||||
const rebuilding = assessProviderRebuild(provider)
|
||||
if (rebuilding) {
|
||||
throw new ErrorClass(
|
||||
`${name} index is ${describeRebuildProgress(rebuilding)} and is not serving yet. ` +
|
||||
`Reads of this family refuse rather than serve an empty result. The brain is open ` +
|
||||
`and every other family is serving; this door opens by itself when the provider ` +
|
||||
`reports serving — no action is needed.`
|
||||
)
|
||||
}
|
||||
throw new ErrorClass(
|
||||
`${name} index is not serving (via ${assessment.via}): ` +
|
||||
`${assessment.reasons.join('; ') || 'not ready'}. Reads refuse rather than serve an ` +
|
||||
|
|
@ -17466,9 +17515,37 @@ export class Brainy<T = any> implements BrainyInterface<T> {
|
|||
// by awaitMigrationLock meanwhile (nothing serves from a half-built index).
|
||||
// Gated per-index, so a non-migrating sibling still rebuilds when it needs
|
||||
// to; a migrating provider is skipped even under epoch-drift or size()===0.
|
||||
const metadataMigrating = this.providerIsMigrating(this.metadataIndex)
|
||||
const vectorMigrating = this.providerIsMigrating(this.index)
|
||||
const graphMigrating = this.providerIsMigrating(this.graphIndex)
|
||||
// SELF-REBUILD DEFERENCE (the sibling of the migration lock, and the
|
||||
// reason a production open took 641 seconds): a provider that reports
|
||||
// `rebuildInProgress()` is ALREADY rebuilding its own index. Brainy must
|
||||
// neither start a second rebuild nor WAIT for the provider's — init()
|
||||
// returns, every other family serves, and that family's own doors refuse
|
||||
// by name (carrying this progress) until the provider reports serving.
|
||||
// A provider without the hook behaves exactly as before.
|
||||
const metadataRebuilding = assessProviderRebuild(this.metadataIndex)
|
||||
const vectorRebuilding = assessProviderRebuild(this.index)
|
||||
const graphRebuilding = assessProviderRebuild(this.graphIndex)
|
||||
for (const [leg, progress] of [
|
||||
['metadata', metadataRebuilding],
|
||||
['vector', vectorRebuilding],
|
||||
['graph', graphRebuilding]
|
||||
] as const) {
|
||||
if (progress) {
|
||||
prodLog.narrate(
|
||||
`[Brainy] open(): the ${leg} provider is ${describeRebuildProgress(progress)} — ` +
|
||||
`open does NOT wait for it. The brain opens now, every other family serves, and ` +
|
||||
`${leg} reads refuse by name until the provider reports itself serving.`
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
const metadataMigrating =
|
||||
this.providerIsMigrating(this.metadataIndex) || metadataRebuilding !== null
|
||||
const vectorMigrating = this.providerIsMigrating(this.index) || vectorRebuilding !== null
|
||||
const graphMigrating = this.providerIsMigrating(this.graphIndex) || graphRebuilding !== null
|
||||
// The epoch stamp certifies EVERY derived index, so it must not advance
|
||||
// while any family is still being built — by a migration lock or by the
|
||||
// provider itself.
|
||||
const anyMigrating = metadataMigrating || vectorMigrating || graphMigrating
|
||||
|
||||
// Per-leg decision, in precedence order: a migrating provider owns its
|
||||
|
|
|
|||
|
|
@ -153,3 +153,83 @@ export function assessProviderHealth(provider: unknown): ProviderHealthAssessmen
|
|||
reasons: readiness === 'not-ready' ? ['isReady() returned false'] : []
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @description A provider's self-report that it is REBUILDING ITS OWN index
|
||||
* right now. Returned by the optional `rebuildInProgress()` hook.
|
||||
*
|
||||
* The distinction this exists to make: a provider reporting `serving: false`
|
||||
* because it is BROKEN and a provider reporting `serving: false` because it is
|
||||
* BUSY BUILDING ITSELF look identical through `healthReport()` alone, and
|
||||
* brainy treated both the same way — it called `rebuild()` and waited for it,
|
||||
* on the foreground of `init()`. A production store whose metadata provider
|
||||
* had to rebuild paid 641 SECONDS of that wait before `init()` returned, with
|
||||
* every other family idle behind it.
|
||||
*
|
||||
* A provider that reports progress here owns its own rebuild: brainy neither
|
||||
* starts one nor waits for it, `init()` returns, the other families serve, and
|
||||
* THAT family's doors refuse by name — carrying this progress — until the
|
||||
* provider reports itself serving.
|
||||
*
|
||||
* Every field but `phase` is optional and every field is a MEASUREMENT: a
|
||||
* provider reports only what it actually tracks, never an estimate dressed as
|
||||
* a fact.
|
||||
*/
|
||||
export interface ProviderRebuildProgress {
|
||||
/** The provider's own name for what it is doing. Quoted verbatim in refusals. */
|
||||
phase: string
|
||||
/** Units completed so far, if the provider counts them. */
|
||||
done?: number
|
||||
/** Units expected in total, if the provider knows it. */
|
||||
total?: number
|
||||
/** Epoch millis when this rebuild started, if the provider tracks it. */
|
||||
startedAt?: number
|
||||
}
|
||||
|
||||
/** A provider that can report a rebuild it is running itself. */
|
||||
interface MaybeRebuildingProvider {
|
||||
rebuildInProgress?: () => ProviderRebuildProgress | null
|
||||
}
|
||||
|
||||
/**
|
||||
* @description Ask a provider whether it is rebuilding itself right now.
|
||||
* Synchronous, O(1), feature-detected: a provider without the hook reports
|
||||
* nothing and is treated exactly as before.
|
||||
* @param provider - Any index provider, or `null`/`undefined`.
|
||||
* @returns The provider's progress, or `null` when it is not rebuilding (or
|
||||
* does not implement the hook).
|
||||
*/
|
||||
export function assessProviderRebuild(provider: unknown): ProviderRebuildProgress | null {
|
||||
const p = provider as MaybeRebuildingProvider | null | undefined
|
||||
if (p == null || typeof p.rebuildInProgress !== 'function') return null
|
||||
try {
|
||||
const progress = p.rebuildInProgress()
|
||||
if (!progress || typeof progress.phase !== 'string' || progress.phase.length === 0) {
|
||||
return null
|
||||
}
|
||||
return progress
|
||||
} catch {
|
||||
// A throwing hook says nothing trustworthy about a rebuild; fall through to
|
||||
// the ordinary health verdict rather than inventing one.
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @description Render a rebuild progress report as one operator-facing clause,
|
||||
* for a refusal message. Includes only what the provider actually measured.
|
||||
* @param progress - The provider's report.
|
||||
* @returns A clause such as `rebuilding ("metadata shadow build", 4,096/14,056, 12s elapsed)`.
|
||||
*/
|
||||
export function describeRebuildProgress(progress: ProviderRebuildProgress): string {
|
||||
const parts: string[] = [`"${progress.phase}"`]
|
||||
if (typeof progress.done === 'number' && typeof progress.total === 'number') {
|
||||
parts.push(`${progress.done.toLocaleString()}/${progress.total.toLocaleString()}`)
|
||||
} else if (typeof progress.done === 'number') {
|
||||
parts.push(`${progress.done.toLocaleString()} done`)
|
||||
}
|
||||
if (typeof progress.startedAt === 'number') {
|
||||
parts.push(`${Math.round((Date.now() - progress.startedAt) / 1000)}s elapsed`)
|
||||
}
|
||||
return `rebuilding (${parts.join(', ')})`
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue