Last active
August 5, 2024 06:12
-
-
Save wsgzao/18828f69147635f3e38a14690a633daf to your computer and use it in GitHub Desktop.
rps.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# chkconfig: 2345 90 60 | |
### BEGIN INIT INFO | |
# Provides: rps | |
# Required-Start: $local_fs $remote_fs $network $syslog | |
# Required-Stop: $local_fs $remote_fs $network $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: enable rps config for ubuntu | |
# Description: enabele rps which is a kernel tweak for network performance | |
### END INIT INFO | |
NAME=rps | |
DESC=rps | |
# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor | |
# cpupower frequency-set -g performance | |
# activate rps/rfs by script: https://gist.github.com/wsgzao/18828f69147635f3e38a14690a633daf | |
# double ring buffer size: ethtool -G p1p1 [rx|tx] 4096, ethtool -g p1p1 | |
# double NAPI poll budget: sysctl -w net.core.netdev_budget=600 | |
rps() { | |
net_interface=`ip link show | grep "state UP" | awk '{print $2}' | egrep -v '^docker|^veth' | tr ":\n" " "` | |
for em in ${net_interface[@]} | |
do | |
rq_count=`ls /sys/class/net/$em/queues/rx-* -d | wc -l` | |
rps_flow_cnt_value=`expr 32768 / $rq_count` | |
for ((i=0; i< $rq_count; i++)) | |
do | |
echo $rps_flow_cnt_value > /sys/class/net/$em/queues/rx-$i/rps_flow_cnt | |
done | |
flag=0 | |
while [ -f /sys/class/net/$em/queues/rx-$flag/rps_cpus ] | |
do | |
echo `cat /sys/class/net/$em/queues/rx-$flag/rps_cpus | sed 's/0/f/g' ` > /sys/class/net/$em/queues/rx-$flag/rps_cpus | |
flag=$(($flag+1)) | |
done | |
done | |
echo 32768 > /proc/sys/net/core/rps_sock_flow_entries | |
sysctl -p | |
} | |
check_rps() { | |
ni_list=`ip link show | grep "state UP" | awk '{print $2}' | egrep -v "^docker|^veth" | tr ":\n" " "` | |
for n in $ni_list | |
do | |
rx_queues=`ls /sys/class/net/$n/queues/ | grep "rx-[0-9]"` | |
for q in $rx_queues | |
do | |
rps_cpus=`cat /sys/class/net/$n/queues/$q/rps_cpus` | |
rps_flow_cnt=`cat /sys/class/net/$n/queues/$q/rps_flow_cnt` | |
echo "[$n]" $q "--> rps_cpus =" $rps_cpus ", rps_flow_cnt =" $rps_flow_cnt | |
done | |
done | |
rps_sock_flow_entries=`cat /proc/sys/net/core/rps_sock_flow_entries` | |
echo "rps_sock_flow_entries =" $rps_sock_flow_entries | |
} | |
case "$1" in | |
start) | |
echo -n "Starting $DESC: " | |
rps | |
check_rps | |
;; | |
stop) | |
echo -n "Stop is not supported. " | |
;; | |
restart|reload|force-reload) | |
echo -n "Restart is not supported. " | |
;; | |
status) | |
check_rps | |
;; | |
*) | |
echo "Usage: $0 [start|status]" | |
;; | |
esac | |
exit 0 |
学习~
/root/rps.sh: line 33: echo: write error: Invalid argument
suggest replace echo to echo -n
echo -n $rps_flow_cnt_value > /sys/class/net/$em/queues/rx-$i/rps_flow_cnt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RPS和RFS网卡多队列性能调优实践
https://wsgzao.github.io/post/rps/