fix(resolution): yield per ref and cache hot per-ref work so the watchdog can't kill a valid index (#1122) (#1137)

The #850 liveness watchdog was killing valid `codegraph init`/`index` runs
at "Resolving refs 0-2%" on large collision-heavy repos (18-25K-file Java
monorepos on slower hardware). #1105's cooperative yielding assumed a
500-ref sub-chunk is always cheap, but per-ref cost is unbounded: a
colliding method name (`execute`, `process`, ...) whose candidate set
misses the 5,000-entry name LRU re-fetches every same-named row
(unbounded SELECT + materialization, measured 8.8ms at just 4K collisions
on an M4 — linear in collision count), and receiver-type inference
re-split the whole source file per ref (~20% of total index CPU). A dense
pocket multiplied that past the 60s window and the heartbeat starved.

Three guards, no behavior change:
- resolveBatchYielding checkpoints after EVERY ref (maybeYield is a ~ns
  time check when under budget), so a slow pocket can never run more than
  one ref past the yield budget.
- resolveMethodOnType's ref-independent candidate filter is memoized per
  (language, Type::method) on the resolver context; per-ref
  disambiguation (import FQN #314, call-site file #1079) stays outside
  the memo.
- Receiver inference reads lines through a per-file LRU (shared and C++
  inferrers), and skips generated/minified lines >10K chars instead of
  regex-scanning them per ref.

Measured on a 4,028-file synthetic Java bank repo (392K refs): mid-loop
max event-loop stall 1528ms -> 546ms under cache thrash, total init
250.9s -> 96.8s at default config.

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Colby Mchenry
2026-07-02 16:34:56 -05:00
committed by GitHub
co-authored by Claude Fable 5
parent e699ee9686
commit 81cb59a86e
5 changed files with 335 additions and 56 deletions
+96 -37
View File
@@ -6,7 +6,7 @@
import * as fs from 'fs';
import * as path from 'path';
import { Node, UnresolvedReference, Edge } from '../types';
import { Language, Node, UnresolvedReference, Edge } from '../types';
import { QueryBuilder } from '../db/queries';
import {
UnresolvedRef,
@@ -227,6 +227,8 @@ export class ReferenceResolver {
private nameCache: LRUCache<string, Node[]>; // name → nodes cache
private lowerNameCache: LRUCache<string, Node[]>; // lower(name) → nodes cache
private qualifiedNameCache: LRUCache<string, Node[]>; // qualified_name → nodes cache
private fileLinesCache: LRUCache<string, string[] | null>; // file → split lines cache
private methodMatchCache: LRUCache<string, Node[]>; // lang\0Type::method → matching method nodes
private knownNames: Set<string> | null = null; // all known symbol names for fast pre-filtering
private knownFiles: Set<string> | null = null;
private cachesWarmed = false;
@@ -254,6 +256,10 @@ export class ReferenceResolver {
this.nameCache = new LRUCache(limit);
this.lowerNameCache = new LRUCache(limit);
this.qualifiedNameCache = new LRUCache(limit);
// Split-lines arrays are heavier than content strings; refs arrive
// file-ordered, so a small cache still hits nearly always.
this.fileLinesCache = new LRUCache(contentLimit);
this.methodMatchCache = new LRUCache(limit);
this.context = this.createContext();
}
@@ -324,11 +330,30 @@ export class ReferenceResolver {
this.nameCache.clear();
this.lowerNameCache.clear();
this.qualifiedNameCache.clear();
this.fileLinesCache.clear();
this.methodMatchCache.clear();
this.knownNames = null;
this.knownFiles = null;
this.cachesWarmed = false;
}
/** `readFile` through the LRU content cache (null = read failed, also cached). */
private readFileCached(filePath: string): string | null {
if (this.fileCache.has(filePath)) {
return this.fileCache.get(filePath)!;
}
const fullPath = path.join(this.projectRoot, filePath);
try {
const content = fs.readFileSync(fullPath, 'utf-8');
this.fileCache.set(filePath, content);
return content;
} catch (error) {
logDebug('Failed to read file for resolution', { filePath, error: String(error) });
this.fileCache.set(filePath, null);
return null;
}
}
/**
* Create the resolution context
*/
@@ -349,6 +374,27 @@ export class ReferenceResolver {
return result;
},
getMethodMatches: (typeName: string, methodName: string, language: Language) => {
const key = `${language} ${typeName}::${methodName}`;
const cached = this.methodMatchCache.get(key);
if (cached !== undefined) return cached;
let candidates = this.nameCache.get(methodName);
if (candidates === undefined) {
candidates = this.queries.getNodesByName(methodName);
this.nameCache.set(methodName, candidates);
}
const want = `${typeName}::${methodName}`;
const matches: Node[] = [];
for (const m of candidates) {
if (m.kind !== 'method') continue;
if (m.language !== language) continue;
const qn = m.qualifiedName;
if (qn === want || qn.endsWith(`::${want}`)) matches.push(m);
}
this.methodMatchCache.set(key, matches);
return matches;
},
getNodesByQualifiedName: (qualifiedName: string) => {
const cached = this.qualifiedNameCache.get(qualifiedName);
if (cached !== undefined) return cached;
@@ -379,21 +425,15 @@ export class ReferenceResolver {
}
},
readFile: (filePath: string) => {
if (this.fileCache.has(filePath)) {
return this.fileCache.get(filePath)!;
}
readFile: (filePath: string) => this.readFileCached(filePath),
const fullPath = path.join(this.projectRoot, filePath);
try {
const content = fs.readFileSync(fullPath, 'utf-8');
this.fileCache.set(filePath, content);
return content;
} catch (error) {
logDebug('Failed to read file for resolution', { filePath, error: String(error) });
this.fileCache.set(filePath, null);
return null;
}
getFileLines: (filePath: string) => {
const cached = this.fileLinesCache.get(filePath);
if (cached !== undefined) return cached;
const source = this.readFileCached(filePath);
const lines = source === null ? null : source.split(/\r?\n/);
this.fileLinesCache.set(filePath, lines);
return lines;
},
getProjectRoot: () => this.projectRoot,
@@ -926,39 +966,58 @@ export class ReferenceResolver {
}
/**
* Resolve one batch in smaller sub-chunks, yielding to the event loop between
* them so the #850 liveness heartbeat can fire on a slow/dense batch (#1091).
* Behaviourally identical to a single `resolveAll(batch)`: `warmCaches()` is
* idempotent (guarded) and `resolveOne` is independent per ref, so splitting
* and re-merging changes only timing, never which edges get created. Falls
* through to a plain `resolveAll` when the batch is already small.
* Resolve one batch with a yield checkpoint between EVERY ref so the #850
* liveness heartbeat can fire on a slow/dense batch (#1091). The checkpoint
* granularity is per-ref — not per-N-refs — because per-ref cost is unbounded
* in the worst case (a collision-heavy method name whose candidate set misses
* the LRU re-fetches tens of thousands of rows): any fixed N multiplies that
* worst case into the watchdog window, which is how v1.2.0 still got killed
* at "Resolving refs" on large Java monorepos (#1122). `maybeYield()` is a
* ~ns time check when under budget, so per-ref checkpoints cost nothing.
* Behaviourally identical to `resolveAll(batch)`: `warmCaches()` is
* idempotent (guarded) and `resolveOne` is independent per ref, so yielding
* between refs changes only timing, never which edges get created.
*/
private async resolveBatchYielding(
batch: UnresolvedReference[],
maybeYield: MaybeYield,
subChunkSize: number = 500
maybeYield: MaybeYield
): Promise<ResolutionResult> {
if (batch.length <= subChunkSize) return this.resolveAll(batch);
this.warmCaches();
const resolved: ResolvedRef[] = [];
const unresolved: UnresolvedRef[] = [];
const byMethod: Record<string, number> = {};
let total = 0;
let resolvedCount = 0;
let unresolvedCount = 0;
for (let i = 0; i < batch.length; i += subChunkSize) {
const chunk = this.resolveAll(batch.slice(i, i + subChunkSize));
for (const r of chunk.resolved) resolved.push(r);
for (const u of chunk.unresolved) unresolved.push(u);
total += chunk.stats.total;
resolvedCount += chunk.stats.resolved;
unresolvedCount += chunk.stats.unresolved;
for (const [m, c] of Object.entries(chunk.stats.byMethod)) {
byMethod[m] = (byMethod[m] || 0) + c;
for (const raw of batch) {
const ref: UnresolvedRef = {
fromNodeId: raw.fromNodeId,
referenceName: raw.referenceName,
referenceKind: raw.referenceKind,
line: raw.line,
column: raw.column,
filePath: raw.filePath || this.getFilePathFromNodeId(raw.fromNodeId),
language: raw.language || this.getLanguageFromNodeId(raw.fromNodeId),
};
const result = this.resolveOne(ref);
if (result) {
resolved.push(result);
byMethod[result.resolvedBy] = (byMethod[result.resolvedBy] || 0) + 1;
} else {
unresolved.push(ref);
}
await maybeYield();
}
return { resolved, unresolved, stats: { total, resolved: resolvedCount, unresolved: unresolvedCount, byMethod } };
return {
resolved,
unresolved,
stats: {
total: batch.length,
resolved: resolved.length,
unresolved: unresolved.length,
byMethod,
},
};
}
/**