Intel® Ethernet Controller E810 Application Device Queues (ADQ)
Configuration Guide
Redis Server Setup
The following variables are used in the examples in this section:
System Setup
- Perform general system setup.
Complete the ADQ install and setup in ADQ System Under Test (SUT) Installation and General System Tuning on just the server under test system.
Note:Many settings in General System Tuning do not persist between reboots and might have to be reapplied. - Perform Redis build:
- Download the Redis release.
wget http://download.redis.io/releases/redis-4.0.11.tar.gz - Untar the package.
tar -xvzf redis-4.0.11.tar.gz - Install Redis.
cd redis-4.0.11 make PREFIX=/opt/redis-4.0.11 install - After this, the redis-server and redis-benchmark are found under /opt/redis-4.0.11/bin.
- Download the Redis release.
- Perform Redis-specific tuning.
Enable overcommit and disable transparent hugepages as per Redis recommendations.
sysctl -w vm.overcommit_memory=1 echo never > /sys/kernel/mm/transparent_hugepage/enabled
Using ADQ Setup Script
The ADQ Setup script allows you to quickly and easily configure required ADQ parameters such as traffic classes, priority, filters, and ethtool parameters etc.
- To configure ADQ, run the following command:
adqsetup --dev=$iface –-priority=skbedit --busypoll=$bp --busyread=$br create $file_name mode shared \ queues $num_queues_tc1 ports $portrange See Notes below for customizing the ADQ configuration. Once ADQ is configured by adqsetup, start the Redis server.
Notes: - The example command above creates both ingress (Rx) and egress (Tx) filters, and a Linux cgroups are not needed to be created and can be skipped (cgroups are only needed if
--priority=skbedit was NOT specified in adqsetup command). - ADQ setup script handles symmetric queues and affinity.
- The setup script sets per-queue coalesce by default.
- Set the transmit and receive interrupt coalescing values to
--rxadapt=off --rxusecs=0 --txadapt=off --txusecs=500 for improved ADQ performance. - To configure independent pollers, add the
-pollers=$pollers parameter in the adqsetup command (and optionally--pollers_timeout ), and remove the flags to set global--busypoll=$bp --busyread=$br . - Use the
cpu parameter in the command to bind the independent pollers to specific CPU cores. Refer to ADQ Setup Using ADQ Setup Script for more information on pinning pollers to specific CPU cores. - The
--debug parameter is optional, but it is useful for obtaining complete stack trace. - For more information on how to use the script, refer ADQ Setup Using ADQ Setup Script.
- The example command above creates both ingress (Rx) and egress (Tx) filters, and a Linux cgroups are not needed to be created and can be skipped (cgroups are only needed if
- Start Redis clones and seed initial data.
Example:
server="${redispath}/redis-server --protected-mode no --loglevel warning \ --tcp-backlog 1023" trafficgen="${redispath}/redis-benchmark" ports=($(seq $app_port $((app_port + app_threads - 1)))) # start clones in the background then seed database ( for p in ${ports[@]:1}; do sleep 1 $server --port $p --slaveof \ 127.0.0.1 $app_port & done sleep 1 #seed initial data $trafficgen -q -t SET,GET -n 5000 -r 1000 -d 100 -c 1 -P 1 -p $app_port echo "** Ready!" ) & # start master server in the foreground and wait for benchmark to start $server --port ${ports[0]} Note:Pinning the application processes to CPU cores using numactl or similar might provide more consistent results.