Latency Mechanics
The Physics of Propagation: Fighting the Speed of Light (c)
1. The Ultimate Speed Limit
In network engineering, we often focus on Serialization Delay or Queuing Delay. However, for long-haul circuits or high-frequency trading (HFT) links, the dominant factor is Propagation Delay. This is determined by a constant of the universe: the speed of light (c).
The Math of c
c ≈ 299,792,458 m/s (in vacuum)
In a vacuum, light travels roughly 300km per millisecond. This means a direct packet from New York to London (5,570km) has a minimum theoretical round-trip time (RTT) of 37ms, even if the fiber path were perfectly straight and routers didn't exist.
2. The Velocity Factor (Vf)
Photons travel slower in matter than in a vacuum. The Velocity Factor (Vf) is the ratio of the speed in a medium to the speed of light in a vacuum.
| Medium | Vf (%) | Lat (┬╡s/km) |
|---|---|---|
| Vacuum / Air | ~99.9% | ~3.33 |
| Standard Single-Mode Fiber | ~67% | ~4.92 |
| Hollow-Core Fiber (Air filled) | ~99% | ~3.37 |
| Category 6e Copper | ~65% | ~5.13 |
3. Orbital Mechanics & Satellite Latency
The "Speed of Light" constraint is most visible in satellite communications. The distance to the satellite determines the initial hop delay.
LEO (Starlink/Kuiper)
Altitude: 550km. Propagation delay: ~3.6ms RTT. Competitive with long-distance fiber.
GEO (Legacy Satellites)
Altitude: 35,786km. Propagation delay: ~480ms-600ms RTT. Physically impossible to use for real-time applications.
4. Designing for Physics
When building global architectures, you cannot skip the laws of thermodynamics or light speed. Use these principles to optimize:
- Edge Compute: Moving the application closer to the user to reduce the geographic path distance.
- Protocol Choice: Using UDP or QUIC to avoid the "TCP Handshake penalty" which requires 3 light-speed trips across the ocean before any data is sent.
- Straight-Line Optimization: Submarine cable routes are rarely straight lines; they avoid seismic zones or fishing grounds, adding "Great Circle" deviation penalties.