Difference between revisions of "VPP/FAQ"

From fd.io
< VPP
Jump to: navigation, search
(Created page with "== Frequently Asked Questions == # Q: I'm using multiple vpp worker threads, yet only one of them is processing traffic. Why? <br /> A: Hardware RSS hashing sends all traffi...")
 
m (Frequently Asked Questions)
Line 2: Line 2:
  
 
# Q: I'm using multiple vpp worker threads, yet only one of them is processing traffic. Why? <br /> A: Hardware RSS hashing sends all traffic from a given flow to the same queue. Each queue is assigned to a single worker thread. Make sure that you're sending traffic from a reasonably large number of flows.
 
# Q: I'm using multiple vpp worker threads, yet only one of them is processing traffic. Why? <br /> A: Hardware RSS hashing sends all traffic from a given flow to the same queue. Each queue is assigned to a single worker thread. Make sure that you're sending traffic from a reasonably large number of flows.
 +
# Q: Why do I see RX misses on an interface at a low data-rate? <br /> A: Check to make sure that the Linux kernel isn't scheduling other work on the same core(s) as vpp. It just won't do for vpp to take a forced 10ms vacation in the middle of packet processing. Check out the vpp autoconfiguration tool.

Revision as of 15:01, 29 November 2017

Frequently Asked Questions

  1. Q: I'm using multiple vpp worker threads, yet only one of them is processing traffic. Why?
    A: Hardware RSS hashing sends all traffic from a given flow to the same queue. Each queue is assigned to a single worker thread. Make sure that you're sending traffic from a reasonably large number of flows.
  2. Q: Why do I see RX misses on an interface at a low data-rate?
    A: Check to make sure that the Linux kernel isn't scheduling other work on the same core(s) as vpp. It just won't do for vpp to take a forced 10ms vacation in the middle of packet processing. Check out the vpp autoconfiguration tool.