惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
博客园 - Franky
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
Microsoft Security Blog
Microsoft Security Blog
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(bench): clean timed-out sample process groups · openc...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

@@ -105,6 +105,8 @@ type CliOptions = {

105105

const DEFAULT_RUNS = 5;

106106

const DEFAULT_WARMUP = 1;

107107

const DEFAULT_TIMEOUT_MS = 30_000;

108+

const TIMEOUT_KILL_GRACE_MS = 1_000;

109+

const PROCESS_GROUP_EXIT_POLL_MS = 25;

108110

const DEFAULT_ENTRY = "openclaw.mjs";

109111

const MAX_RSS_MARKER = "__OPENCLAW_MAX_RSS_KB__=";

110112

const VALUE_FLAGS = new Set([

@@ -708,12 +710,16 @@ async function runSample(params: {

708710

let stderr = "";

709711

let settled = false;

710712

let timedOut = false;

713+

let forceKillAt: number | null = null;

714+

let forceKillTimer: ReturnType<typeof setTimeout> | null = null;

711715

const maxOutputLength = 32 * 1024 * 1024;

712716713717

try {

714718

return await new Promise<Sample>((resolve) => {

719+

const useProcessGroup = process.platform !== "win32";

715720

const proc = spawn(process.execPath, nodeArgs, {

716721

cwd: process.cwd(),

722+

detached: useProcessGroup,

717723

env: {

718724

...process.env,

719725

HOME: runRoot,

@@ -733,6 +739,10 @@ async function runSample(params: {

733739

return;

734740

}

735741

settled = true;

742+

if (forceKillTimer) {

743+

clearTimeout(forceKillTimer);

744+

forceKillTimer = null;

745+

}

736746

const ms = Number(process.hrtime.bigint() - started) / 1e6;

737747

resolve({

738748

ms,

@@ -751,18 +761,11 @@ async function runSample(params: {

751761752762

const timeout = setTimeout(() => {

753763

timedOut = true;

754-

try {

755-

proc.kill("SIGTERM");

756-

} catch {

757-

// Best-effort timeout cleanup.

758-

}

759-

setTimeout(() => {

760-

try {

761-

proc.kill("SIGKILL");

762-

} catch {

763-

// Best-effort timeout cleanup.

764-

}

765-

}, 1_000).unref?.();

764+

signalSampleProcess(proc, "SIGTERM", useProcessGroup);

765+

forceKillAt = Date.now() + TIMEOUT_KILL_GRACE_MS;

766+

forceKillTimer = setTimeout(() => {

767+

signalSampleProcess(proc, "SIGKILL", useProcessGroup);

768+

}, TIMEOUT_KILL_GRACE_MS).unref?.();

766769

}, params.timeoutMs);

767770

timeout.unref?.();

768771

@@ -790,23 +793,108 @@ async function runSample(params: {

790793

});

791794

proc.once("close", (code, signal) => {

792795

clearTimeout(timeout);

793-

finish({

794-

exitCode: code,

795-

signal,

796-

...(code === 0 && signal == null

797-

? {}

798-

: {

799-

stdoutTail: tailLines(stdout, 20),

800-

stderrTail: tailLines(stderr, 20),

801-

}),

802-

});

796+

const complete = () =>

797+

finish({

798+

exitCode: code,

799+

signal,

800+

...(code === 0 && signal == null

801+

? {}

802+

: {

803+

stdoutTail: tailLines(stdout, 20),

804+

stderrTail: tailLines(stderr, 20),

805+

}),

806+

});

807+

if (timedOut && isSampleProcessGroupAlive(proc, useProcessGroup)) {

808+

void finishAfterTimeoutCleanup({

809+

complete,

810+

forceKillAt,

811+

proc,

812+

useProcessGroup,

813+

});

814+

return;

815+

}

816+

complete();

803817

});

804818

});

805819

} finally {

806820

rmSync(runRoot, { recursive: true, force: true });

807821

}

808822

}

809823824+

async function finishAfterTimeoutCleanup(params: {

825+

complete: () => void;

826+

forceKillAt: number | null;

827+

proc: ReturnType<typeof spawn>;

828+

useProcessGroup: boolean;

829+

}): Promise<void> {

830+

const graceRemainingMs =

831+

params.forceKillAt === null

832+

? TIMEOUT_KILL_GRACE_MS

833+

: Math.max(0, params.forceKillAt - Date.now());

834+

if (graceRemainingMs > 0) {

835+

await waitForSampleProcessGroupExit(params.proc, params.useProcessGroup, graceRemainingMs);

836+

}

837+

if (isSampleProcessGroupAlive(params.proc, params.useProcessGroup)) {

838+

signalSampleProcess(params.proc, "SIGKILL", params.useProcessGroup);

839+

}

840+

await waitForSampleProcessGroupExit(params.proc, params.useProcessGroup, TIMEOUT_KILL_GRACE_MS);

841+

params.complete();

842+

}

843+844+

function signalSampleProcess(

845+

proc: ReturnType<typeof spawn>,

846+

signal: NodeJS.Signals,

847+

useProcessGroup: boolean,

848+

): void {

849+

if (!proc.pid) {

850+

return;

851+

}

852+

try {

853+

if (useProcessGroup) {

854+

process.kill(-proc.pid, signal);

855+

} else {

856+

proc.kill(signal);

857+

}

858+

} catch (error) {

859+

const code = (error as NodeJS.ErrnoException | undefined)?.code;

860+

if (code !== "ESRCH" && code !== "EPERM") {

861+

throw error;

862+

}

863+

}

864+

}

865+866+

function isSampleProcessGroupAlive(

867+

proc: ReturnType<typeof spawn>,

868+

useProcessGroup: boolean,

869+

): boolean {

870+

if (!useProcessGroup || !proc.pid) {

871+

return false;

872+

}

873+

try {

874+

process.kill(-proc.pid, 0);

875+

return true;

876+

} catch (error) {

877+

return (error as NodeJS.ErrnoException | undefined)?.code === "EPERM";

878+

}

879+

}

880+881+

async function waitForSampleProcessGroupExit(

882+

proc: ReturnType<typeof spawn>,

883+

useProcessGroup: boolean,

884+

timeoutMs: number,

885+

): Promise<boolean> {

886+

const deadlineAt = Date.now() + timeoutMs;

887+

while (Date.now() < deadlineAt) {

888+

if (!isSampleProcessGroupAlive(proc, useProcessGroup)) {

889+

return true;

890+

}

891+

await new Promise((resolvePoll) => {

892+

setTimeout(resolvePoll, PROCESS_GROUP_EXIT_POLL_MS);

893+

});

894+

}

895+

return !isSampleProcessGroupAlive(proc, useProcessGroup);

896+

}

897+810898

async function runCase(params: {

811899

entry: string;

812900

commandCase: CommandCase;