misc: improved commnts

This commit is contained in:
Sheen Capadngan
2025-10-28 06:06:45 +08:00
parent 8214e07abd
commit d310fef792
3 changed files with 2 additions and 9 deletions

View File

@@ -87,7 +87,8 @@ export const runMigrations = async ({ applicationDb, auditLogDb, logger, onMigra
await applicationDb.transaction(async (tx) => {
await tx.raw("SELECT pg_advisory_xact_lock(?)", [PgSqlLock.BootUpMigration]);
// Signal that this container is running migrations
// Signal that this container is running migrations so that it can be marked as healthy/alive
// This is to prevent the container from being killed by the orchestrator
if (onMigrationLockAcquired) {
onMigrationLockAcquired();
}

View File

@@ -86,7 +86,6 @@ const run = async () => {
envConfig
});
// Setup signal handlers
// eslint-disable-next-line
process.on("SIGINT", async () => {
await server.close();
@@ -117,7 +116,6 @@ const run = async () => {
});
}
// Start listening BEFORE migrations
await server.listen({
port: envConfig.PORT,
host: envConfig.HOST
@@ -144,7 +142,6 @@ const run = async () => {
logger.info("Migrations complete. Marking server as READY...");
// Now mark server as ready - it can accept traffic
markServerReady();
logger.info("Server is ready to accept traffic");

View File

@@ -38,11 +38,9 @@ import { registerServeUI } from "./plugins/serve-ui";
import { fastifySwagger } from "./plugins/swagger";
import { registerRoutes } from "./routes";
// Monitor event loop for readiness checks
const histogram = monitorEventLoopDelay({ resolution: 20 });
histogram.enable();
// Server state tracking
const serverState = {
isReady: false,
isRunningMigrations: false,
@@ -171,7 +169,6 @@ export const main = async ({
});
// Global preHandler to block requests during migrations
// Excludes /api/health and /api/ready endpoints
server.addHook("preHandler", async (request, reply) => {
if (request.url === "/api/health" || request.url === "/api/ready") {
return;
@@ -188,7 +185,6 @@ export const main = async ({
server.get("/api/ready", async (request, reply) => {
const cfg = getConfig();
// Calculate event loop statistics
const meanLagMs = histogram.mean / 1e6;
const maxLagMs = histogram.max / 1e6;
const p99LagMs = histogram.percentile(99) / 1e6;
@@ -252,7 +248,6 @@ export const main = async ({
}
};
// Functions to manage server state
export const markServerReady = () => {
serverState.isReady = true;
serverState.isRunningMigrations = false;