3

我可以在容器/docker 中设置一个进程吗?我怎样才能知道哪些 cpu 核心分配给了这个容器?

我想为某些特定的 cpu 内核设置一个进程以获得更好的性能。

4

1 回答 1

3

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

# 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
}
于 2018-09-05T10:25:30.907 回答