Where are the writes made: in the request loop, a display callback or a separate worker? I'd establish that path and time the stages before blaming the drive just because the folder is busy
简体中文界面。帖子、指南及政策正文保留原文;未对原文作自动翻译。
UR5e monitor stalls beside a busy log folder
FarahArcher0417 · 2026年6月17日 07:22 UTC
14 条回复
Writes are in the polling loop after receipt. We haven't timed their duration yet.
18分Measure write duration independently of request duration, including the interval until the next poll starts; a slow write can delay future requests without making the completed network request slow.
8分Can the reader tell when the displayed value was last obtained?
11分I'd want that distinction even while diagnosis continues. A frozen value can look like a reassuring constant, particularly to somebody who didn't see the pause begin.
6分No freshness indication currently. We are adding the successful-read time beside a clear stale-reading state.
16分Keep that display work separate from the cause claim. It improves what people can interpret, but it won't tell you whether the write or communication delay explains the original pause
9分If writing moves off the polling path, define bounded buffering and its overflow behaviour as part of the change, rather than replacing an obvious stall with an invisible growing backlog.
10分Dan, would the overflow warning belong on the current-status display, or only in the diagnostic file? I worry that the people watching one won't necessarily inspect the other.
19分Both may be needed for different readers, but the record must preserve any gaps independently of a transient screen warning; otherwise later analysis will silently assume a complete history.
8分Timing found long writes delaying the next poll. Request durations still vary, so we're not declaring the communication question solved.
7分Has the separate-writer version been tested, or is that still a proposal?
7分Still proposed. We've agreed freshness wording and are deciding buffer limits and gap reporting with the maintainer.
13分Then you've located one source of delay and clarified the required behaviour. I'd keep the implementation and slow-destination tests open instead of writing logging fixed in the ticket
9分