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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
腾讯CDC
T
Tailwind CSS Blog
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
The Cloudflare Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
B
Blog
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - 司徒正美
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research

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(gateway): defer missed cron agent startup work · open...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -53,6 +53,7 @@ const MIN_REFIRE_GAP_MS = 2_000;

53535454

const DEFAULT_MISSED_JOB_STAGGER_MS = 5_000;

5555

const DEFAULT_MAX_MISSED_JOBS_PER_RESTART = 5;

56+

const DEFAULT_STARTUP_DEFERRED_MISSED_AGENT_JOB_DELAY_MS = 2 * 60_000;

5657

const DEFAULT_FAILURE_ALERT_AFTER = 2;

5758

const DEFAULT_FAILURE_ALERT_COOLDOWN_MS = 60 * 60_000; // 1 hour

5859

@@ -82,9 +83,14 @@ type StartupCatchupCandidate = {

8283

job: CronJob;

8384

};

848586+

type StartupDeferredJob = {

87+

jobId: string;

88+

delayMs?: number;

89+

};

90+8591

type StartupCatchupPlan = {

8692

candidates: StartupCatchupCandidate[];

87-

deferredJobIds: string[];

93+

deferredJobs: StartupDeferredJob[];

8894

};

89959096

export async function executeJobCoreWithTimeout(

@@ -1038,10 +1044,10 @@ function collectRunnableJobs(

1038104410391045

export async function runMissedJobs(

10401046

state: CronServiceState,

1041-

opts?: { skipJobIds?: ReadonlySet<string> },

1047+

opts?: { skipJobIds?: ReadonlySet<string>; deferAgentTurnJobs?: boolean },

10421048

) {

10431049

const plan = await planStartupCatchup(state, opts);

1044-

if (plan.candidates.length === 0 && plan.deferredJobIds.length === 0) {

1050+

if (plan.candidates.length === 0 && plan.deferredJobs.length === 0) {

10451051

return;

10461052

}

10471053

@@ -1051,7 +1057,7 @@ export async function runMissedJobs(

1051105710521058

async function planStartupCatchup(

10531059

state: CronServiceState,

1054-

opts?: { skipJobIds?: ReadonlySet<string> },

1060+

opts?: { skipJobIds?: ReadonlySet<string>; deferAgentTurnJobs?: boolean },

10551061

): Promise<StartupCatchupPlan> {

10561062

const maxImmediate = Math.max(

10571063

0,

@@ -1060,7 +1066,7 @@ async function planStartupCatchup(

10601066

return locked(state, async () => {

10611067

await ensureLoaded(state, { skipRecompute: true });

10621068

if (!state.store) {

1063-

return { candidates: [], deferredJobIds: [] };

1069+

return { candidates: [], deferredJobs: [] };

10641070

}

1065107110661072

const now = state.deps.nowMs();

@@ -1070,13 +1076,28 @@ async function planStartupCatchup(

10701076

allowCronMissedRunByLastRun: true,

10711077

});

10721078

if (missed.length === 0) {

1073-

return { candidates: [], deferredJobIds: [] };

1079+

return { candidates: [], deferredJobs: [] };

10741080

}

10751081

const sorted = missed.toSorted(

10761082

(a, b) => (a.state.nextRunAtMs ?? 0) - (b.state.nextRunAtMs ?? 0),

10771083

);

1078-

const startupCandidates = sorted.slice(0, maxImmediate);

1079-

const deferred = sorted.slice(maxImmediate);

1084+

const deferredAgentJobs = opts?.deferAgentTurnJobs

1085+

? sorted.filter((job) => job.payload.kind === "agentTurn")

1086+

: [];

1087+

const startupEligible = opts?.deferAgentTurnJobs

1088+

? sorted.filter((job) => job.payload.kind !== "agentTurn")

1089+

: sorted;

1090+

const startupCandidates = startupEligible.slice(0, maxImmediate);

1091+

const deferredOverflow = startupEligible.slice(maxImmediate);

1092+

const deferredAgentDelayMs = Math.max(

1093+

0,

1094+

state.deps.startupDeferredMissedAgentJobDelayMs ??

1095+

DEFAULT_STARTUP_DEFERRED_MISSED_AGENT_JOB_DELAY_MS,

1096+

);

1097+

const deferred: StartupDeferredJob[] = [

1098+

...deferredOverflow.map((job) => ({ jobId: job.id })),

1099+

...deferredAgentJobs.map((job) => ({ jobId: job.id, delayMs: deferredAgentDelayMs })),

1100+

];

10801101

if (deferred.length > 0) {

10811102

state.deps.log.info(

10821103

{

@@ -1087,6 +1108,16 @@ async function planStartupCatchup(

10871108

"cron: staggering missed jobs to prevent gateway overload",

10881109

);

10891110

}

1111+

if (deferredAgentJobs.length > 0) {

1112+

state.deps.log.info(

1113+

{

1114+

count: deferredAgentJobs.length,

1115+

jobIds: deferredAgentJobs.map((job) => job.id),

1116+

delayMs: deferredAgentDelayMs,

1117+

},

1118+

"cron: deferring missed agent jobs until after gateway startup",

1119+

);

1120+

}

10901121

if (startupCandidates.length > 0) {

10911122

state.deps.log.info(

10921123

{ count: startupCandidates.length, jobIds: startupCandidates.map((j) => j.id) },

@@ -1101,7 +1132,7 @@ async function planStartupCatchup(

1101113211021133

return {

11031134

candidates: startupCandidates.map((job) => ({ jobId: job.id, job })),

1104-

deferredJobIds: deferred.map((job) => job.id),

1135+

deferredJobs: deferred,

11051136

};

11061137

});

11071138

}

@@ -1182,14 +1213,20 @@ async function applyStartupCatchupOutcomes(

11821213

applyOutcomeToStoredJob(state, result);

11831214

}

118412151185-

if (plan.deferredJobIds.length > 0) {

1216+

if (plan.deferredJobs.length > 0) {

11861217

const baseNow = state.deps.nowMs();

11871218

let offset = staggerMs;

1188-

for (const jobId of plan.deferredJobIds) {

1219+

for (const deferred of plan.deferredJobs) {

1220+

const jobId = deferred.jobId;

11891221

const job = state.store.jobs.find((entry) => entry.id === jobId);

11901222

if (!job || !isJobEnabled(job)) {

11911223

continue;

11921224

}

1225+

if (typeof deferred.delayMs === "number") {

1226+

job.state.nextRunAtMs = baseNow + deferred.delayMs + offset - staggerMs;

1227+

offset += staggerMs;

1228+

continue;

1229+

}

11931230

job.state.nextRunAtMs = baseNow + offset;

11941231

offset += staggerMs;

11951232

}