Displaying 1 result from an estimated 1 matches for "my_domain_pid".
2016 May 13
0
vcpupin vs taskset performance difference
...f a running VM.
The problem is, that I noticed a significant performance drop in my metrics when using 'vcpupin' from the virsh console instead of running 'taskset' natively.
Specifically the methods I am comparing are
1. Using native shell
taskset -a -cp $MY_CPUSET $MY_DOMAIN_PID
2. Using virsh console (performance ~30% down)
for all $VCPUs
virsh vcpupin my_domain -cpulist $MY_CPUSET -vcpu $VCPU -live
virsh emulatorpin my_domain -cpulist $MY_CPUSET -live
It seems that the usage of 'vcpupin' causes a performance drop even if it is ru...