In my reids performance test:
Is use a though line combine my two laptop made a 1GB ethernet, the redis-server deploy in my T420 I5-2520 (2 cores, 4 threads)/8G. use redis-brenchmark in another laptop to test SET command with 20byte value size:
./redis-benchmark -h xx -p xx -t set -q -r 1000 -l -d 20 .
The output:
1 instance:
speed:170K/s network: 280Mb/s process CPU: 98.00% Cpu0 : 21.0%us, 40.7%sy, 0.0%ni, 4.3%id, 0.0%wa, 0.0%hi, 34.0%si, 0.0%st2 instances:
speed:200k/s network:320Mb/s process CPU 1: 98% process CPU 1: 98% Cpu0 : 18.9%us, 20.5%sy, 0.0%ni, 0.3%id, 0.0%wa, 0.0%hi, 60.3%si, 0.0%st Cpu1 : 41.2%us, 56.5%sy, 0.0%ni, 2.3%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st3 instances:
speed:200k/s network:320MB/s process CPU 1: 67% process CPU 1: 67% process CPU 1: 67% Cpu0 : 20.6%us, 19.9%sy, 0.0%ni, 0.7%id, 0.0%wa, 0.0%hi, 58.8%si, 0.0%st Cpu1 : 37.9%us, 54.2%sy, 0.0%ni, 8.0%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st Cpu2 : 5.7%us, 4.7%sy, 0.0%ni, 88.0%id, 1.7%wa, 0.0%hi, 0.0%si, 0.0%st Cpu3 : 5.6%us, 2.6%sy, 0.0%ni, 91.7%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
I have two questions:
Why in 1 instance 280MB/s take 34.0% si, but in 2 instance 320MB it increase great to 60.3% si? Soft interrupt maybe the bottleneck, but in my opinion it must be proportional relationship.
Result of 3 instances test seems that multiple instances cannot use more than one physical CPU core (
cpu0andcpu1in the same physical core)?
