1 |
Rather than have messages travel single hop at a time, sometimes circuit is first established from sender to receiver, and then data transmitted along circuit.
|
2 |
Similar to establishing phone connection
|
3 |
Can result in significantly lower communication overhead as latency deterministic once circuit established
|
4 |
If circuit blocked, many options possible, including
-
Retry, perhaps with alternative circuit or random delay
-
Wormhole routing: message travel like a wagon-train along path, stops when blocked but stays in circuit.
-
Virtual cut-through: message dumps into memory where forward progress blocked, then retries. Blend of pure circuit-switching and store-and-forward.
|
5 |
At high levels of message traffic, performance sometimes severely degraded.
|