fix(whisper): handle model warmup events
- Ignore backend model lifecycle webhooks so model warmup does not mark jobs done early - Parse batched SSE messages and relay model load states during submit retries Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,32 @@
|
||||
import type { ModelStatus } from '$lib/types.js';
|
||||
import type { ModelStateTag, ModelStatus } from '$lib/types.js';
|
||||
|
||||
const MODEL_STATES = new Set<ModelStateTag>(['unloaded', 'loading', 'waiting_for_gpu', 'ready']);
|
||||
|
||||
function isModelStateTag(value: unknown): value is ModelStateTag {
|
||||
return typeof value === 'string' && MODEL_STATES.has(value as ModelStateTag);
|
||||
}
|
||||
|
||||
function extractSseMessages(buffer: string): { messages: { eventType: string; data: string }[]; rest: string } {
|
||||
const normalized = buffer.replace(/\r/g, '');
|
||||
const chunks = normalized.split('\n\n');
|
||||
const rest = chunks.pop() ?? '';
|
||||
const messages = chunks
|
||||
.map((chunk) => {
|
||||
let eventType = '';
|
||||
const dataLines: string[] = [];
|
||||
for (const line of chunk.split('\n')) {
|
||||
if (line.startsWith('event:')) {
|
||||
eventType = line.slice(6).trim();
|
||||
} else if (line.startsWith('data:')) {
|
||||
dataLines.push(line.slice(5).trim());
|
||||
}
|
||||
}
|
||||
return { eventType, data: dataLines.join('\n') };
|
||||
})
|
||||
.filter((message) => message.data.length > 0);
|
||||
|
||||
return { messages, rest };
|
||||
}
|
||||
|
||||
function whisperUrl() {
|
||||
return process.env.WHISPER_URL ?? 'http://localhost:8080';
|
||||
@@ -22,7 +50,10 @@ export async function getModelStatus(): Promise<ModelStatus> {
|
||||
* SSE connection fails or closes without that event, so the retry loop can
|
||||
* try again without hanging indefinitely.
|
||||
*/
|
||||
async function waitForModelReady(timeoutMs: number): Promise<void> {
|
||||
async function waitForModelReady(
|
||||
timeoutMs: number,
|
||||
onStateChange?: (state: ModelStateTag) => void
|
||||
): Promise<void> {
|
||||
const { default: fetch } = await import('node-fetch');
|
||||
const ac = new AbortController();
|
||||
return new Promise((resolve) => {
|
||||
@@ -47,17 +78,18 @@ async function waitForModelReady(timeoutMs: number): Promise<void> {
|
||||
for await (const chunk of res.body) {
|
||||
if (ac.signal.aborted) break;
|
||||
buf += chunk.toString();
|
||||
const lines = buf.split('\n');
|
||||
buf = lines.pop() ?? '';
|
||||
for (const line of lines) {
|
||||
if (!line.startsWith('data:')) continue;
|
||||
const { messages, rest } = extractSseMessages(buf);
|
||||
buf = rest;
|
||||
for (const message of messages) {
|
||||
try {
|
||||
const payload = JSON.parse(line.slice(5).trim());
|
||||
const payload = JSON.parse(message.data) as { state?: unknown };
|
||||
if (!isModelStateTag(payload.state)) continue;
|
||||
if (payload.state === 'ready') {
|
||||
clearTimeout(timer);
|
||||
finish();
|
||||
return;
|
||||
}
|
||||
onStateChange?.(payload.state);
|
||||
} catch { /* ignore parse errors */ }
|
||||
}
|
||||
}
|
||||
@@ -83,7 +115,7 @@ export async function submitJob(
|
||||
wavPath: string,
|
||||
webhookUrl: string,
|
||||
language?: string,
|
||||
onModelWaiting?: (state: string, retryAfterSecs: number) => void,
|
||||
onModelWaiting?: (state: ModelStateTag, retryAfterSecs: number) => void,
|
||||
maxAttempts = 20
|
||||
): Promise<string> {
|
||||
const FormData = (await import('form-data')).default;
|
||||
@@ -116,10 +148,15 @@ export async function submitJob(
|
||||
state?: string;
|
||||
retry_after_secs?: number;
|
||||
};
|
||||
const state = body.state ?? 'unloaded';
|
||||
const state = isModelStateTag(body.state) ? body.state : 'unloaded';
|
||||
const waitSecs = body.retry_after_secs ?? parseInt(res.headers.get('Retry-After') ?? '15');
|
||||
onModelWaiting?.(state, waitSecs);
|
||||
await waitForModelReady((waitSecs + 1) * 1000);
|
||||
let lastState = state;
|
||||
await waitForModelReady((waitSecs + 1) * 1000, (nextState) => {
|
||||
if (nextState === lastState) return;
|
||||
lastState = nextState;
|
||||
onModelWaiting?.(nextState, waitSecs);
|
||||
});
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -169,20 +206,12 @@ export async function streamJob(
|
||||
let buf = '';
|
||||
for await (const chunk of res.body) {
|
||||
buf += chunk.toString();
|
||||
const lines = buf.split('\n');
|
||||
buf = lines.pop() ?? '';
|
||||
|
||||
let eventType = '';
|
||||
let dataLine = '';
|
||||
for (const line of lines) {
|
||||
if (line.startsWith('event:')) eventType = line.slice(6).trim();
|
||||
else if (line.startsWith('data:')) dataLine = line.slice(5).trim();
|
||||
}
|
||||
|
||||
if (!dataLine) continue;
|
||||
const { messages, rest } = extractSseMessages(buf);
|
||||
buf = rest;
|
||||
|
||||
for (const message of messages) {
|
||||
try {
|
||||
const payload = JSON.parse(dataLine);
|
||||
const payload = JSON.parse(message.data);
|
||||
if (payload.type === 'progress') {
|
||||
onProgress(payload.percent ?? 0, payload.chunk ?? 0, payload.total ?? 0);
|
||||
} else if (payload.type === 'done') {
|
||||
@@ -195,6 +224,7 @@ export async function streamJob(
|
||||
} catch { /* ignore parse errors */ }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** Check if the whisper server is healthy. */
|
||||
export async function checkHealth(): Promise<boolean> {
|
||||
|
||||
@@ -6,12 +6,35 @@ import { cleanupJobTmp } from '$lib/server/downloader.js';
|
||||
import { emitProgress } from '$lib/server/pipeline.js';
|
||||
import type { Segment, WhisperJob } from '$lib/types.js';
|
||||
|
||||
const WHISPER_JOB_STATUSES = new Set<WhisperJob['status']>([
|
||||
'queued',
|
||||
'running',
|
||||
'done',
|
||||
'failed',
|
||||
'cancelled'
|
||||
]);
|
||||
|
||||
function isWhisperJobWebhook(payload: unknown): payload is WhisperJob {
|
||||
if (!payload || typeof payload !== 'object') return false;
|
||||
const candidate = payload as Record<string, unknown>;
|
||||
return (
|
||||
typeof candidate.id === 'string' &&
|
||||
typeof candidate.status === 'string' &&
|
||||
WHISPER_JOB_STATUSES.has(candidate.status as WhisperJob['status'])
|
||||
);
|
||||
}
|
||||
|
||||
export async function POST({ params, request }) {
|
||||
const jobId = params.jobId;
|
||||
const job = getJob(jobId);
|
||||
if (!job) throw error(404, 'Job not found');
|
||||
|
||||
const whisperJob = (await request.json()) as WhisperJob;
|
||||
const payload = (await request.json()) as unknown;
|
||||
if (!isWhisperJobWebhook(payload)) {
|
||||
// whisper-rtx2080 also fires model lifecycle events to registered job webhooks.
|
||||
return json({ ok: true, ignored: 'not_a_job_event' });
|
||||
}
|
||||
const whisperJob = payload;
|
||||
|
||||
// Discard the result if the job was cancelled locally while whisper was running
|
||||
if (job.status === 'cancelled') {
|
||||
|
||||
@@ -106,6 +106,64 @@ describe('POST /api/webhook/[jobId] — job not found', () => {
|
||||
});
|
||||
});
|
||||
|
||||
// ── Ignore backend model lifecycle webhooks ─────────────────────────────────────
|
||||
|
||||
describe('POST /api/webhook/[jobId] — non-job webhook payloads', () => {
|
||||
it('ignores model_ready events sent to job webhooks', async () => {
|
||||
mockGetJob.mockReturnValue(makeJob('job-model-ready'));
|
||||
|
||||
const res = await POST(
|
||||
makeEvent('job-model-ready', {
|
||||
type: 'model_ready',
|
||||
loaded_at: new Date().toISOString()
|
||||
}) as any
|
||||
);
|
||||
|
||||
expect(res.status).toBe(200);
|
||||
expect(await res.json()).toEqual({ ok: true, ignored: 'not_a_job_event' });
|
||||
expect(mockSetJobStatus).not.toHaveBeenCalled();
|
||||
expect(mockUpdateJob).not.toHaveBeenCalled();
|
||||
expect(mockWriteOutputs).not.toHaveBeenCalled();
|
||||
expect(mockSendNotification).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('ignores model_unloaded events sent to job webhooks', async () => {
|
||||
mockGetJob.mockReturnValue(makeJob('job-model-unloaded'));
|
||||
|
||||
const res = await POST(
|
||||
makeEvent('job-model-unloaded', {
|
||||
type: 'model_unloaded',
|
||||
unloaded_at: new Date().toISOString()
|
||||
}) as any
|
||||
);
|
||||
|
||||
expect(res.status).toBe(200);
|
||||
expect(await res.json()).toEqual({ ok: true, ignored: 'not_a_job_event' });
|
||||
expect(mockSetJobStatus).not.toHaveBeenCalled();
|
||||
expect(mockUpdateJob).not.toHaveBeenCalled();
|
||||
expect(mockWriteOutputs).not.toHaveBeenCalled();
|
||||
expect(mockSendNotification).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('ignores payloads with invalid status values', async () => {
|
||||
mockGetJob.mockReturnValue(makeJob('job-invalid-status'));
|
||||
|
||||
const res = await POST(
|
||||
makeEvent('job-invalid-status', {
|
||||
id: 'bogus-whisper-id',
|
||||
status: 'model_ready',
|
||||
segments: []
|
||||
}) as any
|
||||
);
|
||||
|
||||
expect(res.status).toBe(200);
|
||||
expect(await res.json()).toEqual({ ok: true, ignored: 'not_a_job_event' });
|
||||
expect(mockSetJobStatus).not.toHaveBeenCalled();
|
||||
expect(mockUpdateJob).not.toHaveBeenCalled();
|
||||
expect(mockWriteOutputs).not.toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
|
||||
// ── Local cancellation guard ──────────────────────────────────────────────────
|
||||
|
||||
describe('POST /api/webhook/[jobId] — locally cancelled job', () => {
|
||||
|
||||
@@ -354,6 +354,32 @@ describe('submitJob — SSE-triggered retry', () => {
|
||||
const id = await submitJob('/tmp/audio.wav', 'http://host/webhook');
|
||||
expect(id).toBe('stream-closed-id');
|
||||
});
|
||||
|
||||
it('relays intermediate model states from /model/events while waiting to retry', async () => {
|
||||
let jobCallIdx = 0;
|
||||
mocks.fetch.mockImplementation((url: string) => {
|
||||
if (String(url).includes('/model/events')) {
|
||||
return Promise.resolve({
|
||||
ok: true,
|
||||
status: 200,
|
||||
body: Readable.from([
|
||||
'data: {"state":"loading"}\n\ndata: {"state":"waiting_for_gpu"}\n\ndata: {"state":"ready"}\n\n'
|
||||
])
|
||||
});
|
||||
}
|
||||
jobCallIdx++;
|
||||
if (jobCallIdx === 1) return Promise.resolve(make503('unloaded', 30));
|
||||
return Promise.resolve(make202('state-relay-id'));
|
||||
});
|
||||
|
||||
const onModelWaiting = vi.fn();
|
||||
const id = await submitJob('/tmp/audio.wav', 'http://host/webhook', undefined, onModelWaiting);
|
||||
expect(id).toBe('state-relay-id');
|
||||
expect(onModelWaiting).toHaveBeenNthCalledWith(1, 'unloaded', 30);
|
||||
expect(onModelWaiting).toHaveBeenNthCalledWith(2, 'loading', 30);
|
||||
expect(onModelWaiting).toHaveBeenNthCalledWith(3, 'waiting_for_gpu', 30);
|
||||
expect(onModelWaiting).toHaveBeenCalledTimes(3);
|
||||
});
|
||||
});
|
||||
|
||||
// ── unloadModel ───────────────────────────────────────────────────────────────
|
||||
@@ -509,6 +535,10 @@ function makeSSEResponse(lines: string[]) {
|
||||
return { ok: true, body };
|
||||
}
|
||||
|
||||
function makeSSEChunkResponse(chunks: string[]) {
|
||||
return { ok: true, body: Readable.from(chunks) };
|
||||
}
|
||||
|
||||
describe('streamJob — SSE event parsing', () => {
|
||||
it('calls onProgress for progress events with percent, chunk, total', async () => {
|
||||
const onProgress = vi.fn();
|
||||
@@ -602,6 +632,27 @@ describe('streamJob — SSE event parsing', () => {
|
||||
expect(onProgress).toHaveBeenNthCalledWith(3, 75, 3, 4);
|
||||
});
|
||||
|
||||
it('handles multiple SSE events delivered in a single chunk', async () => {
|
||||
const onProgress = vi.fn();
|
||||
const onDone = vi.fn();
|
||||
const onError = vi.fn();
|
||||
|
||||
mocks.fetch.mockResolvedValue(
|
||||
makeSSEChunkResponse([
|
||||
'data: {"type":"progress","percent":25,"chunk":1,"total":2}\n\n' +
|
||||
'data: {"type":"progress","percent":50,"chunk":2,"total":2}\n\n' +
|
||||
'data: {"type":"done","job":{}}\n\n'
|
||||
])
|
||||
);
|
||||
|
||||
await streamJob('whisper-id', onProgress, onDone, onError);
|
||||
expect(onProgress).toHaveBeenCalledTimes(2);
|
||||
expect(onProgress).toHaveBeenNthCalledWith(1, 25, 1, 2);
|
||||
expect(onProgress).toHaveBeenNthCalledWith(2, 50, 2, 2);
|
||||
expect(onDone).toHaveBeenCalledOnce();
|
||||
expect(onError).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('defaults chunk and total to 0 when missing from progress event', async () => {
|
||||
const onProgress = vi.fn();
|
||||
const onDone = vi.fn();
|
||||
|
||||
Reference in New Issue
Block a user