Cascading replication
Also called: relay replication, replication tiers
Cascading replication is when a standby streams WAL onward to other standbys instead of every standby connecting directly to the primary. The intermediate standby runs its own walsender and relays WAL downstream, forming a tree of replicas (primary → tier-1 standby → tier-2 standbys).
What this means
Normally every standby streams WAL straight from the primary. With cascading replication a standby passes the WAL onward to other standbys instead, so you get a tree (primary to a tier-1 standby to several tier-2 standbys) and the primary isn't feeding every replica directly.
Why it matters operationally
It offloads walsender fan-out from the primary and collapses redundant cross-region traffic, one WAL stream crosses a WAN link and fans out locally. The catch: cascaded standbys can't be synchronous, since the primary only negotiates durability with its direct children.