File size: 7,957 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | // Import Sentry instrumentation first, before any other modules
import "./instrument";
import { closeWorkerDb } from "@midday/db/worker-client";
import {
buildReadinessResponse,
checkDependencies,
} from "@midday/health/checker";
import { workerDependencies } from "@midday/health/probes";
import { createLoggerWithContext } from "@midday/logger";
import * as Sentry from "@sentry/bun";
import { Worker } from "bullmq";
import { Hono } from "hono";
import { workbench } from "workbench/hono";
import { getProcessor } from "./processors/registry";
import { getAllQueues, queueConfigs } from "./queues";
import { registerStaticSchedulers } from "./schedulers/registry";
const logger = createLoggerWithContext("worker");
/**
* Create workers dynamically from queue configurations
*/
const workers = queueConfigs.map((config) => {
const worker = new Worker(
config.name,
async (job) => {
const processor = getProcessor(job.name);
if (!processor) {
throw new Error(`No processor registered for job: ${job.name}`);
}
return processor.handle(job);
},
config.workerOptions,
);
// Always attach error handler to prevent unhandled errors
// See: https://docs.bullmq.io/guide/going-to-production#log-errors
worker.on("error", (err) => {
logger.error(`Worker error: ${config.name}`, { error: err.message });
Sentry.captureException(err, {
tags: { workerName: config.name, errorType: "worker_error" },
});
});
// Centralized failed handler that captures to Sentry
// Note: BaseProcessor already captures in-process failures with full context
// This catches failures that bypass the processor (e.g., no processor registered)
worker.on("failed", async (job, err) => {
logger.error(`Job failed: ${job?.name}`, {
worker: config.name,
jobId: job?.id,
error: err.message,
});
Sentry.captureException(err, {
tags: {
workerName: config.name,
jobName: job?.name ?? "unknown",
errorType: "job_failed",
},
extra: {
jobId: job?.id,
attemptsMade: job?.attemptsMade,
},
});
// Call custom onFailed handler if provided
// Pass full job info including data for status updates
if (config.eventHandlers?.onFailed) {
try {
await config.eventHandlers.onFailed(
job
? {
name: job.name,
id: job.id,
data: job.data,
attemptsMade: job.attemptsMade,
opts: job.opts,
}
: null,
err,
);
} catch (handlerError) {
logger.error(`Error in onFailed handler: ${config.name}`, {
error:
handlerError instanceof Error
? handlerError.message
: String(handlerError),
});
Sentry.captureException(handlerError, {
tags: {
workerName: config.name,
errorType: "onfailed_handler_error",
},
});
}
}
});
// Register event handlers if provided
if (config.eventHandlers) {
if (config.eventHandlers.onCompleted) {
worker.on("completed", (job) => {
config.eventHandlers!.onCompleted!({
name: job.name,
id: job.id,
});
});
}
}
return worker;
});
// Register static schedulers on startup
registerStaticSchedulers().catch((error) => {
logger.error("Failed to register static schedulers", {
error: error instanceof Error ? error.message : String(error),
});
process.exit(1);
});
// Create Hono app
const app = new Hono();
const basePath = "/admin";
// Initialize Workbench dashboard
function initializeWorkbench() {
const queues = getAllQueues();
if (queues.length === 0) {
logger.warn("No queues found when initializing Workbench");
return;
}
// Mount workbench with optional auth
app.route(
basePath,
workbench({
queues,
auth:
process.env.BOARD_USERNAME && process.env.BOARD_PASSWORD
? {
username: process.env.BOARD_USERNAME,
password: process.env.BOARD_PASSWORD,
}
: undefined,
title: "Midday Jobs",
tags: ["teamId"],
}),
);
logger.info(`Workbench initialized with ${queues.length} queues`, {
queues: queues.map((q) => q.name),
});
}
// Initialize Workbench on startup
initializeWorkbench();
// Health check endpoint - verifies service is running
app.get("/", (c) => {
return c.json({ status: "ok" }, 200);
});
// Health check endpoint - verifies service is running
app.get("/health", (c) => {
return c.json({ status: "ok" }, 200);
});
// Readiness check - verifies core dependencies (DB, Redis queue)
app.get("/health/ready", async (c) => {
const results = await checkDependencies(workerDependencies(), 1);
const response = buildReadinessResponse(results);
return c.json(response, response.status === "ok" ? 200 : 503);
});
// Dashboard info endpoint
app.get("/info", (c) => {
const queues = getAllQueues();
return c.json({
queues: queues.map((q) => ({ name: q.name })),
dashboardUrl: `${basePath}/queues`,
});
});
// Start server
const port = Number.parseInt(process.env.PORT || "8080", 10);
Bun.serve({
port,
hostname: "0.0.0.0",
fetch: app.fetch,
});
logger.info(`Worker server running on port ${port}`);
logger.info("Workers initialized and ready to process jobs");
/**
* Graceful shutdown handlers
* Close database connections and workers cleanly on process termination
*/
const shutdown = async (signal: string) => {
logger.info(`Received ${signal}, starting graceful shutdown...`);
const SHUTDOWN_TIMEOUT = 30_000; // 30 seconds max for shutdown
const shutdownPromise = (async () => {
try {
// Stop accepting new jobs
logger.info("Stopping workers from accepting new jobs...");
await Promise.all(workers.map((worker) => worker.close()));
// Wait a bit for in-flight jobs to complete
logger.info("Waiting for in-flight jobs to complete...");
await new Promise((resolve) => setTimeout(resolve, 5000)); // 5 seconds grace period
// Close database connections
logger.info("Closing database connections...");
await closeWorkerDb();
// Flush pending Sentry events before exit
logger.info("Flushing Sentry events...");
await Sentry.close(2000);
logger.info("Graceful shutdown complete");
} catch (error) {
logger.error("Error during shutdown", {
error: error instanceof Error ? error.message : String(error),
});
}
})();
// Race shutdown against timeout
const timeoutPromise = new Promise<void>((resolve) => {
setTimeout(() => {
logger.warn("Shutdown timeout reached, forcing exit");
resolve();
}, SHUTDOWN_TIMEOUT);
});
await Promise.race([shutdownPromise, timeoutPromise]);
process.exit(0);
};
process.on("SIGTERM", () => shutdown("SIGTERM"));
process.on("SIGINT", () => shutdown("SIGINT"));
/**
* Unhandled exception and rejection handlers
* See: https://docs.bullmq.io/guide/going-to-production#unhandled-exceptions-and-rejections
*/
process.on("uncaughtException", (err) => {
logger.error("Uncaught exception", { error: err.message, stack: err.stack });
Sentry.captureException(err, {
tags: { errorType: "uncaught_exception" },
});
// Don't exit - let the process manager (Railway) handle restarts
});
process.on("unhandledRejection", (reason, promise) => {
logger.error("Unhandled rejection", {
reason: reason instanceof Error ? reason.message : String(reason),
stack: reason instanceof Error ? reason.stack : undefined,
});
Sentry.captureException(
reason instanceof Error ? reason : new Error(String(reason)),
{
tags: { errorType: "unhandled_rejection" },
},
);
// Don't exit - let the process manager (Railway) handle restarts
});
|