我可以在容器/码头工人中对进程进行任务设置吗?



我可以在容器/码头工人中对进程进行任务设置吗? 如何判断分配给此容器的 CPU 内核?

我想将进程任务设置为某些特定的 CPU 内核以获得更好的性能。

我得到了一个简单的解决方案。

# shell function which gets the last `taskset`able cpu core 
findLastUsableCore() {
count=`grep -c ^processor /proc/cpuinfo`
count=$((count - 1))
while [ "${count}" -ge "0" ] ; do
taskset -c ${count} echo >/dev/null 2>&1
if [ "$?" -eq "0" ];then
return ${count}
fi
count=$((count - 1))
done
return 0
}

相关内容

  • 没有找到相关文章

最新更新