@cosmicdrift/kumiko-framework 0.290.0 → 0.291.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/package.json +4 -4
  2. package/src/__tests__/pii-personal-migration-report-codemod.test.ts +160 -0
  3. package/src/api/__tests__/server-error-logging.test.ts +168 -17
  4. package/src/api/request-context.ts +3 -0
  5. package/src/api/request-id-middleware.ts +2 -1
  6. package/src/api/routes.ts +35 -3
  7. package/src/changes.json +51 -0
  8. package/src/crypto/__tests__/event-pii.test.ts +110 -9
  9. package/src/crypto/__tests__/subject-resolver.test.ts +23 -2
  10. package/src/crypto/subject-resolver.ts +25 -8
  11. package/src/db/queries/shadow-swap.ts +35 -0
  12. package/src/engine/__tests__/boot-validator-pii-retention.test.ts +122 -0
  13. package/src/engine/__tests__/boot-validator.test.ts +226 -0
  14. package/src/engine/__tests__/build-app-schema.test.ts +18 -0
  15. package/src/engine/__tests__/engine.test.ts +87 -0
  16. package/src/engine/__tests__/form-money-currency-types.test.ts +90 -0
  17. package/src/engine/boot-validator/entity-handler.ts +44 -0
  18. package/src/engine/boot-validator/index.ts +7 -2
  19. package/src/engine/boot-validator/pii-retention.ts +8 -0
  20. package/src/engine/boot-validator/screens.ts +50 -0
  21. package/src/engine/create-app.ts +54 -0
  22. package/src/engine/feature-config-events-jobs.ts +19 -0
  23. package/src/engine/index.ts +1 -0
  24. package/src/engine/screen-helpers.ts +1 -0
  25. package/src/event-store/__tests__/backfill-pii.integration.test.ts +30 -6
  26. package/src/i18n/required-surface-keys.ts +1 -0
  27. package/src/jobs/__tests__/job-last-success.integration.test.ts +135 -0
  28. package/src/jobs/index.ts +7 -1
  29. package/src/jobs/job-runner.ts +94 -4
  30. package/src/logging/utils.ts +14 -1
  31. package/src/observability/index.ts +1 -0
  32. package/src/observability/standard-metrics.ts +20 -0
  33. package/src/pipeline/__tests__/blind-index-rebuild-guard.integration.test.ts +96 -0
  34. package/src/pipeline/projection-rebuild.ts +7 -0
  35. package/src/schema-cli.ts +21 -0
  36. package/src/scripts/codemod/pii-personal-migration.ts +242 -2
@@ -0,0 +1,135 @@
1
+ import { afterAll, beforeAll, describe, expect, test } from "bun:test";
2
+ import { buildServer } from "../../api/server";
3
+ import { createRegistry, defineFeature } from "../../engine";
4
+ import type { AppContext, Registry } from "../../engine/types";
5
+ import {
6
+ createNoopProvider,
7
+ createPrometheusMeter,
8
+ registerStandardMetrics,
9
+ } from "../../observability";
10
+ import { createTestRedis, type TestRedis } from "../../stack";
11
+ import { waitFor } from "../../testing";
12
+ import { createJobRunner } from "../job-runner";
13
+
14
+ const JWT = "job-last-success-test-secret-minimum-32-chars!!";
15
+ const SUCCEEDS = "liveness:job:succeeds";
16
+ const FAILS = "liveness:job:fails-always";
17
+
18
+ let testRedis: TestRedis;
19
+ let redisUrl: string;
20
+
21
+ const livenessFeature = defineFeature("liveness", (r) => {
22
+ r.job("succeeds", { trigger: { manual: true } }, async () => {});
23
+ r.job("failsAlways", { trigger: { manual: true } }, async () => {
24
+ throw new Error("intentional failure");
25
+ });
26
+ });
27
+
28
+ beforeAll(async () => {
29
+ testRedis = await createTestRedis();
30
+ redisUrl = `redis://${testRedis.redis.options.host}:${testRedis.redis.options.port}/${testRedis.redis.options.db}`;
31
+ });
32
+
33
+ afterAll(async () => {
34
+ await testRedis.cleanup();
35
+ });
36
+
37
+ function slotFor(meter: ReturnType<typeof createPrometheusMeter>, job: string) {
38
+ return meter
39
+ .snapshot()
40
+ .get("kumiko_job_last_success_timestamp_seconds")
41
+ ?.slots.find((s) => s.labels?.["job"] === job);
42
+ }
43
+
44
+ async function withRunner(
45
+ meter: ReturnType<typeof createPrometheusMeter>,
46
+ fn: (runner: ReturnType<typeof createJobRunner>, failures: string[]) => Promise<void>,
47
+ ): Promise<void> {
48
+ const registry: Registry = createRegistry([livenessFeature]);
49
+ const context: AppContext = { meter };
50
+ const failures: string[] = [];
51
+ const queueNamePrefix = `kumiko-test-ls-${Date.now()}-${Math.random().toString(36).slice(2, 8)}`;
52
+ const runner = createJobRunner({
53
+ registry,
54
+ context,
55
+ redisUrl,
56
+ consumerLane: "worker",
57
+ queueNamePrefix,
58
+ onJobFailed: (jobName) => {
59
+ failures.push(jobName);
60
+ },
61
+ });
62
+ await runner.start();
63
+ try {
64
+ await fn(runner, failures);
65
+ } finally {
66
+ await runner.stop();
67
+ const keys = await testRedis.redis.keys(`bull:${queueNamePrefix}-worker:*`);
68
+ if (keys.length > 0) await testRedis.redis.del(...keys);
69
+ }
70
+ }
71
+
72
+ describe("job-runner — kumiko_job_last_success_timestamp_seconds", () => {
73
+ test("a successful run stamps the gauge, a failing run leaves no series", async () => {
74
+ const meter = createPrometheusMeter();
75
+ registerStandardMetrics(meter);
76
+
77
+ await withRunner(meter, async (runner, failures) => {
78
+ const before = Date.now() / 1000;
79
+ await runner.dispatch(SUCCEEDS, {});
80
+ await waitFor(() => slotFor(meter, SUCCEEDS) !== undefined);
81
+
82
+ const stamped = slotFor(meter, SUCCEEDS) as { value: number };
83
+ expect(stamped.value).toBeGreaterThanOrEqual(before);
84
+ expect(stamped.value).toBeLessThanOrEqual(Date.now() / 1000 + 1);
85
+
86
+ // Separate job name, so the "failure must not stamp" assertion cannot
87
+ // pass just because a prior success left a value inside the same second.
88
+ await runner.dispatch(FAILS, {});
89
+ await waitFor(() => failures.includes(FAILS));
90
+ expect(slotFor(meter, FAILS)).toBeUndefined();
91
+ });
92
+ });
93
+
94
+ test("a later success advances the stamp", async () => {
95
+ const meter = createPrometheusMeter();
96
+ registerStandardMetrics(meter);
97
+
98
+ await withRunner(meter, async (runner) => {
99
+ await runner.dispatch(SUCCEEDS, {});
100
+ await waitFor(() => slotFor(meter, SUCCEEDS) !== undefined);
101
+ const first = (slotFor(meter, SUCCEEDS) as { value: number }).value;
102
+
103
+ await runner.dispatch(SUCCEEDS, {});
104
+ await waitFor(() => (slotFor(meter, SUCCEEDS) as { value: number }).value > first, {
105
+ delays: [250, 1000, 3000],
106
+ });
107
+ expect((slotFor(meter, SUCCEEDS) as { value: number }).value).toBeGreaterThan(first);
108
+ });
109
+ });
110
+
111
+ test("the stamp reaches the real /metrics scrape output", async () => {
112
+ const meter = createPrometheusMeter();
113
+ registerStandardMetrics(meter);
114
+
115
+ await withRunner(meter, async (runner) => {
116
+ await runner.dispatch(SUCCEEDS, {});
117
+ await waitFor(() => slotFor(meter, SUCCEEDS) !== undefined);
118
+
119
+ // Same meter instance the runner wrote into — that sharing is what
120
+ // buildServer + job-runner do in a real process (fw#1046).
121
+ const { app } = buildServer({
122
+ registry: createRegistry([livenessFeature]),
123
+ context: {},
124
+ jwtSecret: JWT,
125
+ observability: { ...createNoopProvider(), meter },
126
+ metrics: {},
127
+ });
128
+ const res = await app.request("/metrics");
129
+ expect(res.status).toBe(200);
130
+ const body = await res.text();
131
+ expect(body).toContain("# TYPE kumiko_job_last_success_timestamp_seconds gauge");
132
+ expect(body).toContain(`kumiko_job_last_success_timestamp_seconds{job="${SUCCEEDS}"} `);
133
+ });
134
+ });
135
+ });
package/src/jobs/index.ts CHANGED
@@ -1,2 +1,8 @@
1
- export type { JobLogEntry, JobMeta, JobRunner, JobRunnerOptions } from "./job-runner";
1
+ export type {
2
+ JobLogEntry,
3
+ JobMeta,
4
+ JobOutcomeMeta,
5
+ JobRunner,
6
+ JobRunnerOptions,
7
+ } from "./job-runner";
2
8
  export { createJobRunner } from "./job-runner";
@@ -18,10 +18,12 @@ import {
18
18
  SYSTEM_TENANT_ID,
19
19
  type TenantId,
20
20
  } from "../engine/types";
21
+ import { isKumikoError } from "../errors/kumiko-error";
21
22
  import { createFileContext } from "../files/file-handle";
22
23
  import { createFallbackLogger } from "../logging";
23
24
  import type { Logger } from "../logging/types";
24
25
  import {
26
+ emitJobLastSuccess,
25
27
  emitJobQueueDepth,
26
28
  getFallbackTracer,
27
29
  type Meter,
@@ -139,6 +141,55 @@ export type JobMeta = {
139
141
  priority?: number | undefined;
140
142
  };
141
143
 
144
+ // What a finished run tells the run-logger about the tenant-visible failure
145
+ // record (`JobDefinition.tenantVisibleFailure`). `tenantVisible` is set only
146
+ // when the job opted in; `messageKey` is null on the success path, where the
147
+ // record is cleared rather than written.
148
+ export type JobOutcomeMeta = {
149
+ readonly tenantId: string;
150
+ readonly finalAttempt: boolean;
151
+ readonly tenantVisible?:
152
+ | { readonly subject: string | null; readonly messageKey: string | null }
153
+ | undefined;
154
+ };
155
+
156
+ // Stable identity for the declared payload fields: sorted keys, so two runs
157
+ // with the same subject values produce the same string and the later one
158
+ // replaces the earlier record. Non-primitives would serialize into something
159
+ // no caller can reconstruct for a lookup, so they fail the run loudly.
160
+ function jobSubjectKey(
161
+ jobName: string,
162
+ payload: Record<string, unknown>,
163
+ fields: readonly string[] | undefined,
164
+ ): string | null {
165
+ if (fields === undefined || fields.length === 0) return null;
166
+ const entries: [string, string | number | boolean | null][] = [];
167
+ for (const field of [...fields].sort()) {
168
+ const value = payload[field] ?? null;
169
+ if (value !== null && typeof value === "object") {
170
+ throw new Error(
171
+ `Job "${jobName}": tenantVisibleFailure.subjectFields["${field}"] must be a primitive, got ${typeof value}`,
172
+ );
173
+ }
174
+ entries.push([field, value as string | number | boolean | null]);
175
+ }
176
+ return JSON.stringify(entries);
177
+ }
178
+
179
+ // Only a translation key ever travels to the tenant: the thrown error's own
180
+ // i18nKey when it carries one, otherwise the key declared at the job. The
181
+ // error message itself can echo provider or payload content and stays on the
182
+ // run row and in the run log.
183
+ function tenantFailureMessageKey(
184
+ err: unknown,
185
+ declaration: JobDefinition["tenantVisibleFailure"],
186
+ ): string | null {
187
+ // skip: job did not opt in — nothing tenant-visible to record
188
+ if (!declaration) return null;
189
+ if (isKumikoError(err) && err.i18nKey.length > 0) return err.i18nKey;
190
+ return declaration.messageKey;
191
+ }
192
+
142
193
  export type JobRunner = {
143
194
  start(): Promise<void>;
144
195
  stop(): Promise<void>;
@@ -176,8 +227,20 @@ export type JobRunnerOptions = {
176
227
  bootRedisTimeoutMs?: number | undefined;
177
228
  getActiveTenantIds?: () => Promise<TenantId[]>;
178
229
  onJobStart?: (jobName: string, jobId: string, meta: JobMeta) => void;
179
- onJobComplete?: (jobName: string, jobId: string, duration: number, logs: JobLogEntry[]) => void;
180
- onJobFailed?: (jobName: string, jobId: string, error: string, logs: JobLogEntry[]) => void;
230
+ onJobComplete?: (
231
+ jobName: string,
232
+ jobId: string,
233
+ duration: number,
234
+ logs: JobLogEntry[],
235
+ outcome?: JobOutcomeMeta,
236
+ ) => void;
237
+ onJobFailed?: (
238
+ jobName: string,
239
+ jobId: string,
240
+ error: string,
241
+ logs: JobLogEntry[],
242
+ outcome?: JobOutcomeMeta,
243
+ ) => void;
181
244
  };
182
245
 
183
246
  // Serialized trace context lives under this key in the BullMQ job data.
@@ -527,6 +590,24 @@ export function createJobRunner(options: JobRunnerOptions): JobRunner {
527
590
  SYSTEM_TENANT_ID;
528
591
  const triggeredById = (rawData["_triggeredById"] as string | undefined) ?? null; // @cast-boundary dynamic-key
529
592
 
593
+ // Tenant-visible failure record (JobDefinition.tenantVisibleFailure). The
594
+ // subject is read from the handler payload, so it is resolved here where
595
+ // the payload is built, not in the callbacks.
596
+ const tenantVisibleDecl = jobDef.tenantVisibleFailure;
597
+ const tenantVisibleSubject = tenantVisibleDecl
598
+ ? jobSubjectKey(jobName, payload, tenantVisibleDecl.subjectFields)
599
+ : null;
600
+ // BullMQ stops retrying once attemptsMade reaches the configured attempts
601
+ // (`retries + 1`), so this is the attempt whose failure is final.
602
+ const finalAttempt = bullJob.attemptsMade + 1 >= (jobDef.retries ?? 0) + 1;
603
+ const outcomeMeta = (messageKey: string | null): JobOutcomeMeta => ({
604
+ tenantId,
605
+ finalAttempt,
606
+ ...(tenantVisibleDecl && {
607
+ tenantVisible: { subject: tenantVisibleSubject, messageKey },
608
+ }),
609
+ });
610
+
530
611
  // Carry `_triggerName` from rawData when set — handleEvent injects it on
531
612
  // multi-trigger dispatch; exposed as jobContext.triggerName so handlers
532
613
  // don't dig through the raw payload themselves.
@@ -676,12 +757,21 @@ export function createJobRunner(options: JobRunnerOptions): JobRunner {
676
757
  },
677
758
  () => jobDef.handler(payload, jobContext),
678
759
  );
760
+ // Stamped before the observer hook: a throwing onJobComplete must not
761
+ // make a run that actually succeeded look dead to the liveness alert.
762
+ if (context.meter) emitJobLastSuccess(context.meter, jobName);
679
763
  const duration = Date.now() - startTime;
680
- await options.onJobComplete?.(jobName, jobId, duration, logs);
764
+ await options.onJobComplete?.(jobName, jobId, duration, logs, outcomeMeta(null));
681
765
  } catch (err) {
682
766
  const errorMsg = err instanceof Error ? err.message : String(err);
683
767
  logs.push({ level: "error", message: errorMsg, timestamp: Temporal.Now.instant() });
684
- await options.onJobFailed?.(jobName, jobId, errorMsg, logs);
768
+ await options.onJobFailed?.(
769
+ jobName,
770
+ jobId,
771
+ errorMsg,
772
+ logs,
773
+ outcomeMeta(tenantFailureMessageKey(err, tenantVisibleDecl)),
774
+ );
685
775
  throw err;
686
776
  }
687
777
  };
@@ -2,18 +2,27 @@ import type { Logger } from "./types";
2
2
 
3
3
  type FallbackLogger = {
4
4
  error(msg: string, data?: Record<string, unknown>): void;
5
+ warn(msg: string, data?: Record<string, unknown>): void;
5
6
  debug(msg: string, data?: Record<string, unknown>): void;
6
7
  };
7
8
 
8
9
  export function createFallbackLogger(
9
10
  namespace: string,
10
- logger?: (Pick<Logger, "error"> & Partial<Pick<Logger, "debug">>) | undefined,
11
+ logger?: (Pick<Logger, "error"> & Partial<Pick<Logger, "warn" | "debug">>) | undefined,
11
12
  ): FallbackLogger {
12
13
  if (logger) {
13
14
  return {
14
15
  error(msg, data) {
15
16
  logger.error(`[${namespace}] ${msg}`, data);
16
17
  },
18
+ warn(msg, data) {
19
+ if (logger.warn) {
20
+ logger.warn(`[${namespace}] ${msg}`, data);
21
+ } else {
22
+ // biome-ignore lint/suspicious/noConsole: ops-visible fallback when the wrapped logger has no warn method
23
+ console.warn(`[${namespace}] ${msg}`, data);
24
+ }
25
+ },
17
26
  debug(msg, data) {
18
27
  if (logger.debug) {
19
28
  logger.debug(`[${namespace}] ${msg}`, data);
@@ -29,6 +38,10 @@ export function createFallbackLogger(
29
38
  // biome-ignore lint/suspicious/noConsole: ops-visible fallback when no logger is wired
30
39
  console.error(`[${namespace}] ${msg}`, data);
31
40
  },
41
+ warn(msg, data) {
42
+ // biome-ignore lint/suspicious/noConsole: ops-visible fallback when no logger is wired
43
+ console.warn(`[${namespace}] ${msg}`, data);
44
+ },
32
45
  debug(msg, data) {
33
46
  // biome-ignore lint/suspicious/noConsole: ops-visible fallback when no logger is wired
34
47
  console.debug(`[${namespace}] ${msg}`, data);
@@ -54,6 +54,7 @@ export {
54
54
  emitEventConsumerRearmExhausted,
55
55
  emitEventDispatcherListenConnected,
56
56
  emitHttpRequest,
57
+ emitJobLastSuccess,
57
58
  emitJobQueueDepth,
58
59
  registerStandardMetrics,
59
60
  STANDARD_METRIC_DEFS,
@@ -123,6 +123,19 @@ export const STANDARD_METRIC_DEFS: readonly MetricDefinition[] = [
123
123
  description: "BullMQ job counts per lane and state.",
124
124
  labels: ["lane", "state"],
125
125
  },
126
+ // Dead-man for in-process jobs: the k8s CronJob alerts never fire for them
127
+ // (no CronJob object exists), and a gauge the job itself sets freezes on its
128
+ // last value when the job dies, so neither `absent()` nor a threshold
129
+ // catches a silently stopped cron. This one is stamped by the runner, so
130
+ // `time() - kumiko_job_last_success_timestamp_seconds{job="…"} > interval`
131
+ // is a true liveness check. Absent until the first success after a restart —
132
+ // see docs/reference/job-liveness-metric.md for the `for:` that implies.
133
+ {
134
+ name: "kumiko_job_last_success_timestamp_seconds",
135
+ type: "gauge",
136
+ description: "Unix timestamp of the last successful run, per registered job.",
137
+ labels: ["job"],
138
+ },
126
139
  ] as const;
127
140
 
128
141
  export function registerStandardMetrics(meter: Meter): void {
@@ -273,3 +286,10 @@ export function emitJobQueueDepth(
273
286
  meter.gauge("kumiko_job_queue_depth").set(count, { lane, state });
274
287
  }
275
288
  }
289
+
290
+ // `job` is the registry-declared job name — handleJob rejects an unknown name
291
+ // before it can reach here, so the label set is bounded by the app's r.job
292
+ // registrations and carries no tenant or user input.
293
+ export function emitJobLastSuccess(meter: Meter, job: string): void {
294
+ meter.gauge("kumiko_job_last_success_timestamp_seconds").set(Date.now() / 1000, { job });
295
+ }
@@ -0,0 +1,96 @@
1
+ // projection-rebuild aborts instead of silently NULLing an already-populated
2
+ // blind-index column when this process has no blind-index key configured
3
+ // (fw#3091) — see assertNoBlindIndexLoss in db/queries/shadow-swap.ts.
4
+
5
+ import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, test } from "bun:test";
6
+ import { resetBlindIndexKeyForTests } from "@cosmicdrift/kumiko-framework/testing";
7
+ import { computeBlindIndex, configureBlindIndexKey, decodeBlindIndexKey } from "../../crypto";
8
+ import { createEventStoreExecutor } from "../../db/event-store-executor";
9
+ import { asRawClient } from "../../db/query";
10
+ import { buildEntityTable } from "../../db/table-builder";
11
+ import { createTenantDb, type TenantDb } from "../../db/tenant-db";
12
+ import { createEntity, createRegistry, createTextField, defineFeature } from "../../engine";
13
+ import { createEventsTable } from "../../event-store";
14
+ import { createProjectionStateTable, rebuildProjection } from "../../pipeline";
15
+ import { createTestDb, type TestDb, TestUsers, unsafeCreateEntityTable } from "../../stack";
16
+
17
+ const TEST_KEY_B64 = Buffer.alloc(32, 9).toString("base64");
18
+ const TEST_KEY = decodeBlindIndexKey(TEST_KEY_B64);
19
+
20
+ const personEntity = createEntity({
21
+ table: "read_bidx_guard_persons",
22
+ fields: {
23
+ email: createTextField({ required: true, personal: "self", find: "exact" }),
24
+ },
25
+ });
26
+ const personFeature = defineFeature("bidxguardtest", (r) => {
27
+ r.entity("person", personEntity);
28
+ });
29
+ const personTable = buildEntityTable("person", personEntity);
30
+ const implicitName = "bidxguardtest:projection:person-entity";
31
+
32
+ const admin = TestUsers.admin;
33
+ let testDb: TestDb;
34
+ let tdb: TenantDb;
35
+ const registry = createRegistry([personFeature]);
36
+ const crud = createEventStoreExecutor(personTable, personEntity, { entityName: "person" });
37
+
38
+ beforeAll(async () => {
39
+ testDb = await createTestDb();
40
+ await unsafeCreateEntityTable(testDb.db, personEntity, "person");
41
+ await createEventsTable(testDb.db);
42
+ await createProjectionStateTable(testDb.db);
43
+ tdb = createTenantDb(testDb.db, admin.tenantId);
44
+ });
45
+
46
+ afterAll(async () => {
47
+ await testDb.cleanup();
48
+ });
49
+
50
+ beforeEach(async () => {
51
+ await asRawClient(testDb.db).unsafe(
52
+ `TRUNCATE kumiko_events, read_bidx_guard_persons, kumiko_projections RESTART IDENTITY CASCADE`,
53
+ );
54
+ configureBlindIndexKey(TEST_KEY_B64);
55
+ });
56
+
57
+ afterEach(() => {
58
+ resetBlindIndexKeyForTests();
59
+ });
60
+
61
+ async function rawRow(id: string): Promise<Record<string, unknown>> {
62
+ const rows = await asRawClient(testDb.db).unsafe<Record<string, unknown>>(
63
+ `SELECT * FROM read_bidx_guard_persons WHERE id = $1`,
64
+ [id],
65
+ );
66
+ const row = rows[0];
67
+ if (!row) throw new Error(`no row for ${id}`);
68
+ return row;
69
+ }
70
+
71
+ describe("projection-rebuild — blind-index loss guard (fw#3091)", () => {
72
+ test("populated bidx column + no key in this process → rebuild throws, live table untouched", async () => {
73
+ const created = await crud.create({ email: "marc@example.com" }, admin, tdb);
74
+ if (!created.isSuccess) throw new Error("create failed");
75
+ const before = await rawRow(String(created.data.id));
76
+ expect(before["email_bidx"]).toBe(computeBlindIndex(TEST_KEY, "marc@example.com"));
77
+
78
+ resetBlindIndexKeyForTests();
79
+ await expect(rebuildProjection(implicitName, { db: testDb.db, registry })).rejects.toThrow(
80
+ /KUMIKO_BLIND_INDEX_KEY/,
81
+ );
82
+
83
+ const after = await rawRow(String(created.data.id));
84
+ expect(after).toEqual(before);
85
+ });
86
+
87
+ test("populated bidx column + key configured → rebuild succeeds, bidx recomputed", async () => {
88
+ const created = await crud.create({ email: "marc@example.com" }, admin, tdb);
89
+ if (!created.isSuccess) throw new Error("create failed");
90
+
91
+ await rebuildProjection(implicitName, { db: testDb.db, registry });
92
+
93
+ const after = await rawRow(String(created.data.id));
94
+ expect(after["email_bidx"]).toBe(computeBlindIndex(TEST_KEY, "marc@example.com"));
95
+ });
96
+ });
@@ -9,6 +9,7 @@ import {
9
9
  import {
10
10
  assertLiveColumnsMatchMeta,
11
11
  assertLiveTableHasNoRowLevelSecurity,
12
+ assertNoBlindIndexLoss,
12
13
  assertNoUnreachableLiveRows,
13
14
  buildShadowTable,
14
15
  type ColumnDriftResult,
@@ -358,6 +359,12 @@ export async function rebuildProjection(
358
359
  if (skipped.length > 0) {
359
360
  await recordRebuildDeadLetters(tx, projectionName, skipped);
360
361
  }
362
+ // Guard the swap: abort if the process has no blind-index key configured
363
+ // but the live table already has populated bidx columns — the rebuild
364
+ // would otherwise silently null them out (fw#3091). Applies to every
365
+ // projection, not just implicit ones: the shadow always gets a fresh
366
+ // computeBlindIndexValues() pass regardless of projection kind.
367
+ await assertNoBlindIndexLoss(tx, meta.tableName, meta, projectionName);
361
368
  // Guard the swap: abort if the live table holds a row no event can
362
369
  // reconstruct (#498 ghost — direct-inserted without a .created event),
363
370
  // which the swap would silently drop. Implicit projections only.
package/src/schema-cli.ts CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  import { existsSync, mkdirSync, readdirSync, writeFileSync } from "node:fs";
12
12
  import { join, resolve as resolvePath } from "node:path";
13
+ import {
14
+ configureBlindIndexKey,
15
+ configurePiiSubjectKms,
16
+ type KmsWiring,
17
+ resolveKmsWiringAsync,
18
+ } from "./crypto";
13
19
  import {
14
20
  assertValidMigrationName,
15
21
  baselineMigrations,
@@ -316,6 +322,7 @@ export async function runSchemaCli(
316
322
  return 1;
317
323
  }
318
324
  const { db, close } = createDbConnection(dbUrl);
325
+ let wiring: KmsWiring | undefined;
319
326
  try {
320
327
  const result = await runMigrationsFromDir(db, migrationsDir);
321
328
  // Framework-Infra-Tabellen (event-store + pipeline-state) — die erfasst
@@ -346,6 +353,19 @@ export async function runSchemaCli(
346
353
  // retry it — otherwise a failed rebuild is silently never retried,
347
354
  // since the migration itself is already tracked applied (#2464).
348
355
  if (options.features) {
356
+ // A rebuild replays applyEntityEvent, which computes bidx columns from
357
+ // configureBlindIndexKey/configurePiiSubjectKms — both boot-injected by
358
+ // run{Prod,Dev}App but never by this standalone CLI (the migrate-db
359
+ // initContainer). Without wiring them here, a rebuild would silently
360
+ // null out bidx columns and, for ciphertext, throw only once it hits
361
+ // the row (fw#3091).
362
+ wiring = await resolveKmsWiringAsync(process.env, {
363
+ logPrefix: "[kumiko schema apply]",
364
+ });
365
+ if ("kms" in wiring) {
366
+ configurePiiSubjectKms(wiring.kms);
367
+ configureBlindIndexKey(wiring.blindIndexKey);
368
+ }
349
369
  const thisRunTables = await queueRebuildsFromMarkers(db, {
350
370
  migrationsDir,
351
371
  appliedIds: result.applied,
@@ -376,6 +396,7 @@ export async function runSchemaCli(
376
396
  out.err("");
377
397
  return 1;
378
398
  } finally {
399
+ await wiring?.close();
379
400
  await close();
380
401
  }
381
402
  }