5. Flow Performance Tool
Application for rte_flow performance testing. The application provide the ability to test insertion rate of specific rte_flow rule, by stressing it to the NIC, and calculate the insertion rate.
The application offers some options in the command line, to configure which rule to apply.
After that the application will start producing rules with same pattern but increasing the outer IP source address by 1 each time, thus it will give different flow each time, and all other items will have open masks.
6. Known Limitations
The current version has limitations which can be removed in future:
- Support outer items up to tunnel layer only.
- Single core insertion only.
- Only one instance of same action can be added in one rule.
The application also provide the ability to measure rte flow deletion rate, in addition to memory consumption before and after the flows creation.
The app supports single and multi core performance measurements.
7. Compiling the Application
The test-flow-perf application is compiled as part of the main compilation
of the DPDK libraries and tools.
Refer to the DPDK Getting Started Guides for details.
8. Running the Application
8.1. EAL Command-line Options
Please refer to EAL parameters (Linux) or EAL parameters (FreeBSD) for a list of available EAL command-line options.
8.2. Flow Performance Options
The following are the command-line options for the flow performance application.
They must be separated from the EAL options, shown in the previous section,
with a -- separator:
sudo ./dpdk-test-flow_perf -n 4 -w 08:00.0 -- --ingress --ether --ipv4 --queue --flows-count=1000000
The command line options are:
--helpDisplay a help message and quit.--flows-count=NSet the number of needed flows to insert, where 1 <= N <= “number of flows”. The default value is 4,000,000.--dump-iterationsPrint rates for each iteration of flows. Default iteration is 1,00,000.--deletion-rateEnable deletion rate calculations.--dump-socket-memDump the memory stats for each socket before the insertion and after.--enable-fwdEnable packets forwarding after insertion/deletion operations.
Attributes:
--ingressSet Ingress attribute to all flows attributes.--egressSet Egress attribute to all flows attributes.--transferSet Transfer attribute to all flows attributes.--group=NSet group for all flows, where N >= 0. Default group is 0.
Items:
--etherAdd Ether item to all flows items, This item have open mask.--vlanAdd VLAN item to all flows items, This item have VLAN value defined in user_parameters.h underVNI_VALUEwith full mask, default value = 1. Other fields are open mask.--ipv4Add IPv4 item to all flows items, This item have incremental source IP, with full mask. Other fields are open mask.--ipv6Add IPv6 item to all flows item, This item have incremental source IP, with full mask. Other fields are open mask.--tcpAdd TCP item to all flows items, This item have open mask.--udpAdd UDP item to all flows items, This item have open mask.--vxlanAdd VXLAN item to all flows items, This item have VNI value defined in user_parameters.h underVNI_VALUEwith full mask, default value = 1. Other fields are open mask.--vxlan-gpeAdd VXLAN-GPE item to all flows items, This item have VNI value defined in user_parameters.h underVNI_VALUEwith full mask, default value = 1. Other fields are open mask.--greAdd GRE item to all flows items, This item have protocol value defined in user_parameters.h underGRE_PROTOwith full mask, default protocol = 0x6558 “Ether” Other fields are open mask.--geneveAdd GENEVE item to all flows items, This item have VNI value defined in user_parameters.h underVNI_VALUEwith full mask, default value = 1. Other fields are open mask.--gtpAdd GTP item to all flows items, This item have TEID value defined in user_parameters.h underTEID_VALUEwith full mask, default value = 1. Other fields are open mask.--metaAdd Meta item to all flows items, This item have data value defined in user_parameters.h underMETA_DATAwith full mask, default value = 1. Other fields are open mask.--tagAdd Tag item to all flows items, This item have data value defined in user_parameters.h underMETA_DATAwith full mask, default value = 1.Also it have tag value defined in user_parameters.h under
TAG_INDEXwith full mask, default value = 0. Other fields are open mask.
Actions:
--port-idAdd port redirection action to all flows actions. Port redirection destination is defined in user_parameters.h under PORT_ID_DST, default value = 1.--rssAdd RSS action to all flows actions, The queues in RSS action will be all queues configured in the app.--queueAdd queue action to all flows items, The queue will change in round robin state for each flow.- For example:
The app running with 4 RX queues Flow #0: queue index 0 Flow #1: queue index 1 Flow #2: queue index 2 Flow #3: queue index 3 Flow #4: queue index 0 ...
--jumpAdd jump action to all flows actions. Jump action destination is defined in user_parameters.h underJUMP_ACTION_TABLE, default value = 2.--markAdd mark action to all flows actions. Mark action id is defined in user_parameters.h underMARK_ID, default value = 1.--countAdd count action to all flows actions.--set-metaAdd set-meta action to all flows actions. Meta data is defined in user_parameters.h underMETA_DATAwith full mask, default value = 1.--set-tagAdd set-tag action to all flows actions. Meta data is defined in user_parameters.h underMETA_DATAwith full mask, default value = 1.Tag index is defined in user_parameters.h under
TAG_INDEXwith full mask, default value = 0.--dropAdd drop action to all flows actions.--hairpin-queue=NAdd hairpin queue action to all flows actions. The queue will change in round robin state for each flow.- For example:
The app running with 4 RX hairpin queues and 4 normal RX queues Flow #0: queue index 4 Flow #1: queue index 5 Flow #2: queue index 6 Flow #3: queue index 7 Flow #4: queue index 4 ...
--hairpin-rss=NAdd hairpin RSS action to all flows actions. The queues in RSS action will be all hairpin queues configured in the app.