Multi-core network packet steering

This is an old revision of this page, as edited by FrancioT (talk | contribs) at 10:41, 8 July 2025. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Network packet steering of incoming traffic for multi-core architectures is needed in modern network computing environment, especially in data centers, where the high bandwidth and heavy loads would easily congestion a single core's queue. For this reason many techniques, both in hardware and in software, are leveraged in order to distribute the incoming load of packets across the cores of the processor.

Hardware techniques

Hardware accelerated techniques like RSS and aRFS are used to route and load balance incoming packets across the multiple cores' queues of a processor.
Those hardware supported methods achieve extremely low latencies and reduce the load on the CPU, as compared to the software based ones. However they require a specialized hardware integrated within the network interface card (NIC) (which could be for example a SmartNIC).

RSS

Receive Side Scaling (RSS)

aRFS

Accelerated Receive Flow Steering (aRFS)

Software techniques

Software techniques like RPS and RFS employ one of the CPU cores to steer incoming packets across the other cores of the processor.
The benefits of a software solutions is the ease in implementation, without having to change any component (like the NIC) of the currently used architecture, but by simply deploying the proper kernel module. This benefit can be crucial especially in cases where the server machine can't be customized or accessed (like in cloud computing environment), even if the network performances could be reduced as compared the hardware supported ones.

RPS

Receive Packet Steering (RPS)

RFS

Receive Flow Steering (RFS)

References