Remote Latency
When server and TUI are on different machines, latency affects operator experience more than server orchestration correctness.
What latency impacts
- perceived delay between action and UI update
- log stream smoothness
- reconnect/replay frequency on unstable links
What latency does not change
- dependency graph planning
- local process startup logic on the host running
flowlayer-server - state machine semantics (
starting,running,ready, ...)
Practical guidance
- Prefer low-latency paths (VPN/SSH tunnel on stable links).
- Keep session token handling explicit and secure for the chosen path.
- Use
get_logswithafter_seqafter reconnects instead of trusting live stream continuity. - For high-latency links, reduce unnecessary action churn and batch investigations by service.
Reference: