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

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

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(telegram): cool down unhealthy transports · openclaw/...
obviyus · 2026-05-10 · via Recent Commits to openclaw:main

@@ -42,6 +42,9 @@ const TELEGRAM_DISPATCHER_KEEP_ALIVE_MAX_TIMEOUT_MS = 600_000;

4242

const TELEGRAM_DISPATCHER_CONNECTIONS_PER_ORIGIN = 10;

4343

const TELEGRAM_DISPATCHER_PIPELINING = 1;

4444

const TELEGRAM_STICKY_FALLBACK_PRIMARY_PROBE_SUCCESS_THRESHOLD = 5;

45+

const TELEGRAM_TRANSPORT_ATTEMPT_FAILURE_THRESHOLD = 5;

46+

const TELEGRAM_TRANSPORT_ATTEMPT_INITIAL_COOLDOWN_MS = 10_000;

47+

const TELEGRAM_TRANSPORT_ATTEMPT_MAX_COOLDOWN_MS = 60_000;

45484649

type TelegramAgentPoolOptions = {

4750

allowH2: false;

@@ -80,6 +83,12 @@ type TelegramTransportAttempt = {

8083

logMessage?: string;

8184

};

828586+

type TelegramTransportAttemptHealth = {

87+

consecutiveFailures: number;

88+

cooldownMs: number;

89+

unhealthyUntilMs: number;

90+

};

91+8392

type TelegramDnsResultOrder = "ipv4first" | "verbatim";

84938594

type LookupCallback =

@@ -110,22 +119,6 @@ type TelegramTransportFallbackContext = {

110119

codes: Set<string>;

111120

};

112121113-

type TelegramTransportFallbackRule = {

114-

name: string;

115-

matches: (ctx: TelegramTransportFallbackContext) => boolean;

116-

};

117-118-

const TELEGRAM_TRANSPORT_FALLBACK_RULES: readonly TelegramTransportFallbackRule[] = [

119-

{

120-

name: "fetch-failed-envelope",

121-

matches: ({ message }) => message.includes("fetch failed"),

122-

},

123-

{

124-

name: "known-network-code",

125-

matches: ({ codes }) => FALLBACK_RETRY_ERROR_CODES.some((code) => codes.has(code)),

126-

},

127-

];

128-129122

function normalizeDnsResultOrder(value: string | null): TelegramDnsResultOrder | null {

130123

if (value === "ipv4first" || value === "verbatim") {

131124

return value;

@@ -446,20 +439,28 @@ function formatErrorCodes(err: unknown): string {

446439

return codes.length > 0 ? codes.join(",") : "none";

447440

}

448441442+

class TelegramTransportAttemptUnhealthyError extends Error {

443+

constructor(unhealthyUntilMs: number) {

444+

const remainingMs = Math.max(0, unhealthyUntilMs - Date.now());

445+

super(`telegram transport attempt temporarily unhealthy; retry after ${remainingMs}ms`);

446+

this.name = "TelegramTransportAttemptUnhealthyError";

447+

}

448+

}

449+449450

function shouldUseTelegramTransportFallback(err: unknown): boolean {

451+

if (err instanceof TelegramTransportAttemptUnhealthyError) {

452+

return true;

453+

}

450454

const ctx: TelegramTransportFallbackContext = {

451455

message:

452456

err && typeof err === "object" && "message" in err

453457

? normalizeLowercaseStringOrEmpty(String(err.message))

454458

: "",

455459

codes: collectErrorCodes(err),

456460

};

457-

for (const rule of TELEGRAM_TRANSPORT_FALLBACK_RULES) {

458-

if (!rule.matches(ctx)) {

459-

return false;

460-

}

461-

}

462-

return true;

461+

const hasFetchFailedEnvelope = ctx.message.includes("fetch failed");

462+

const hasKnownNetworkCode = FALLBACK_RETRY_ERROR_CODES.some((code) => ctx.codes.has(code));

463+

return hasKnownNetworkCode || (hasFetchFailedEnvelope && ctx.codes.size === 0);

463464

}

464465465466

export function shouldRetryTelegramTransportFallback(err: unknown): boolean {

@@ -643,12 +644,46 @@ export function resolveTelegramTransport(

643644

let stickyAttemptIndex = 0;

644645

let stickySuccessCount = 0;

645646

let primaryProbeDue = false;

647+

const attemptHealth = transportAttempts.map<TelegramTransportAttemptHealth>(() => ({

648+

consecutiveFailures: 0,

649+

cooldownMs: TELEGRAM_TRANSPORT_ATTEMPT_INITIAL_COOLDOWN_MS,

650+

unhealthyUntilMs: 0,

651+

}));

646652647653

const resetStickyRecoveryProbe = (): void => {

648654

stickySuccessCount = 0;

649655

primaryProbeDue = false;

650656

};

651657658+

const getAttemptCooldownError = (attemptIndex: number): Error | null => {

659+

const health = attemptHealth[attemptIndex];

660+

if (health.unhealthyUntilMs <= Date.now()) {

661+

return null;

662+

}

663+

return new TelegramTransportAttemptUnhealthyError(health.unhealthyUntilMs);

664+

};

665+666+

const recordAttemptFailure = (attemptIndex: number, err: unknown): void => {

667+

if (!shouldUseTelegramTransportFallback(err)) {

668+

return;

669+

}

670+

const health = attemptHealth[attemptIndex];

671+

health.consecutiveFailures += 1;

672+

if (health.consecutiveFailures < TELEGRAM_TRANSPORT_ATTEMPT_FAILURE_THRESHOLD) {

673+

return;

674+

}

675+

const cooldownMs = Math.min(

676+

TELEGRAM_TRANSPORT_ATTEMPT_MAX_COOLDOWN_MS,

677+

Math.max(TELEGRAM_TRANSPORT_ATTEMPT_INITIAL_COOLDOWN_MS, health.cooldownMs),

678+

);

679+

health.consecutiveFailures = 0;

680+

health.cooldownMs = Math.min(TELEGRAM_TRANSPORT_ATTEMPT_MAX_COOLDOWN_MS, cooldownMs * 2);

681+

health.unhealthyUntilMs = Date.now() + cooldownMs;

682+

log.warn(

683+

`telegram transport attempt marked temporarily unhealthy for ${cooldownMs}ms (codes=${formatErrorCodes(err)})`,

684+

);

685+

};

686+652687

const promoteStickyAttempt = (nextIndex: number, err: unknown, reason?: string): boolean => {

653688

if (nextIndex <= stickyAttemptIndex || nextIndex >= transportAttempts.length) {

654689

return false;

@@ -669,6 +704,11 @@ export function resolveTelegramTransport(

669704

};

670705671706

const recordSuccessfulAttempt = (attemptIndex: number): void => {

707+

const health = attemptHealth[attemptIndex];

708+

health.consecutiveFailures = 0;

709+

health.cooldownMs = TELEGRAM_TRANSPORT_ATTEMPT_INITIAL_COOLDOWN_MS;

710+

health.unhealthyUntilMs = 0;

711+672712

if (stickyAttemptIndex === 0) {

673713

resetStickyRecoveryProbe();

674714

return;

@@ -700,50 +740,63 @@ export function resolveTelegramTransport(

700740

(init as RequestInitWithDispatcher | undefined)?.dispatcher,

701741

);

702742

const stickyStartIndex = Math.min(stickyAttemptIndex, transportAttempts.length - 1);

703-

const primaryProbe = !callerProvidedDispatcher && primaryProbeDue && stickyStartIndex > 0;

743+

const stickyCooldownError = callerProvidedDispatcher

744+

? null

745+

: getAttemptCooldownError(stickyStartIndex);

746+

const primaryProbe =

747+

!callerProvidedDispatcher &&

748+

stickyStartIndex > 0 &&

749+

(primaryProbeDue || stickyCooldownError !== null);

704750

const startIndex = primaryProbe ? 0 : stickyStartIndex;

705751

if (primaryProbe) {

706752

primaryProbeDue = false;

707-

log.debug("fetch fallback: re-probing primary dispatcher after sticky fallback successes");

708-

}

709-

let err: unknown;

710-711-

try {

712-

const response = await sourceFetch(

713-

input,

714-

withDispatcherIfMissing(init, transportAttempts[startIndex].createDispatcher()),

753+

log.debug(

754+

stickyCooldownError

755+

? "fetch fallback: re-probing primary dispatcher while sticky fallback is cooling down"

756+

: "fetch fallback: re-probing primary dispatcher after sticky fallback successes",

715757

);

716-

captureHttpExchange({

717-

url: resolveRequestUrl(input),

718-

method: init?.method ?? "GET",

719-

requestHeaders: init?.headers as Headers | Record<string, string> | undefined,

720-

requestBody: (init as RequestInit & { body?: BodyInit | null })?.body ?? null,

721-

response,

722-

flowId: randomUUID(),

723-

meta: { subsystem: "telegram-fetch" },

724-

});

725-

if (!callerProvidedDispatcher) {

726-

recordSuccessfulAttempt(startIndex);

727-

}

728-

return response;

729-

} catch (caught) {

730-

err = caught;

731758

}

759+

let err: unknown;

732760733-

if (!shouldUseTelegramTransportFallback(err)) {

734-

throw err;

735-

}

736761

if (callerProvidedDispatcher) {

737-

return sourceFetch(input, init ?? {});

762+

try {

763+

const response = await sourceFetch(input, init);

764+

captureHttpExchange({

765+

url: resolveRequestUrl(input),

766+

method: init?.method ?? "GET",

767+

requestHeaders: init?.headers as Headers | Record<string, string> | undefined,

768+

requestBody: (init as RequestInit & { body?: BodyInit | null })?.body ?? null,

769+

response,

770+

flowId: randomUUID(),

771+

meta: { subsystem: "telegram-fetch" },

772+

});

773+

return response;

774+

} catch (caught) {

775+

if (!shouldUseTelegramTransportFallback(caught)) {

776+

throw caught;

777+

}

778+

return sourceFetch(input, init ?? {});

779+

}

738780

}

739781740-

for (let nextIndex = startIndex + 1; nextIndex < transportAttempts.length; nextIndex += 1) {

741-

const nextAttempt = transportAttempts[nextIndex];

742-

promoteStickyAttempt(nextIndex, err);

782+

for (

783+

let attemptIndex = startIndex;

784+

attemptIndex < transportAttempts.length;

785+

attemptIndex += 1

786+

) {

787+

const attempt = transportAttempts[attemptIndex];

788+

if (attemptIndex > startIndex) {

789+

promoteStickyAttempt(attemptIndex, err);

790+

}

791+

const cooldownError = getAttemptCooldownError(attemptIndex);

792+

if (cooldownError) {

793+

err = cooldownError;

794+

continue;

795+

}

743796

try {

744797

const response = await sourceFetch(

745798

input,

746-

withDispatcherIfMissing(init, nextAttempt.createDispatcher()),

799+

withDispatcherIfMissing(init, attempt.createDispatcher()),

747800

);

748801

captureHttpExchange({

749802

url: resolveRequestUrl(input),

@@ -752,15 +805,19 @@ export function resolveTelegramTransport(

752805

requestBody: (init as RequestInit & { body?: BodyInit | null })?.body ?? null,

753806

response,

754807

flowId: randomUUID(),

755-

meta: { subsystem: "telegram-fetch", fallbackAttempt: nextIndex },

808+

meta:

809+

attemptIndex === startIndex

810+

? { subsystem: "telegram-fetch" }

811+

: { subsystem: "telegram-fetch", fallbackAttempt: attemptIndex },

756812

});

757-

recordSuccessfulAttempt(nextIndex);

813+

recordSuccessfulAttempt(attemptIndex);

758814

return response;

759815

} catch (caught) {

760816

err = caught;

761817

if (!shouldUseTelegramTransportFallback(err)) {

762818

throw err;

763819

}

820+

recordAttemptFailure(attemptIndex, err);

764821

}

765822

}

766823