• linux taskset命令


    一、简介

    taskset命令用于设置进程(或线程)的处理器亲和性(Processor Affinity),可以将进程(或线程)绑定到特定的一个 或 多个CPU上去执行,而不允许将进程(或 线程)调度到其他的CPU上。

    CPU亲和性使用位掩码来表示,最低的顺序位是第一个逻辑CPU,最高位对应为最后一个逻辑CPU。

    查看cpu的信息可以用 “cat /proc/cpuinfo”命令。

    # 总核数 = 物理CPU个数 X 每颗物理CPU的核数 
    # 总逻辑CPU数 = 物理CPU个数 X 每颗物理CPU的核数 X 超线程数

    The masks may be specified in hexadecimal (with or without a leading "0x"), or as a CPU list with the --cpu-list option. 

    位掩码可以十六进制或者 --cpu-list选项表示,使用十六进制表示的时候可以不带或者带0x前缀。

    举例说明

    1. 0x00000001
    2. is processor #0,
    3. 0x00000003
    4. is processors #0 and #1,
    5. 0xFFFFFFFF
    6. is processors #0 through #31,
    7. 32
    8. is processors #1, #4, and #5,
    9. --cpu-list 0-2,6
    10. is processors #0, #1, #2, and #6.
    11. --cpu-list 0-10:2
    12. is processors #0, #2, #4, #6, #8 and #10. The suffix ":N"
    13. specifies stride in the range, for example 0-10:3 is
    14. interpreted as 0,3,6,9 list.

    二、常用参数:

    -a, --all-tasks设置或检索所有任务(线程)的CPU相关性对于给定的PID
    -c, --cpu-list指定逻辑cpu的序号
    -p, --pid在现有PID上操作,不要启动新任务
    -V, --version显示版本信息

    -h, --help
    显示帮助信息

    三、常用使用场景

    1、查看某一个进程允许运行在那个Cpu上

    taskset -p pid
    1. [root@localhost ~]# ps -eLf | grep qemu
    2. root 1389 1339 1389 0 3 14:48 pts/0 00:00:10 /usr/libexec/qemu-kvm -cpu SandyBridge -vnc 0.0.0.0:1 centos1708.img
    3. root 1389 1339 1393 2 3 14:48 pts/0 00:00:36 /usr/libexec/qemu-kvm -cpu SandyBridge -vnc 0.0.0.0:1 centos1708.img
    4. root 1389 1339 1395 0 3 14:48 pts/0 00:00:00 /usr/libexec/qemu-kvm -cpu SandyBridge -vnc 0.0.0.0:1 centos1708.img
    5. root 2638 1409 2638 0 1 15:10 pts/1 00:00:00 grep --color=auto qemu
    6. [root@localhost ~]# taskset -p 1393
    7. pid 1393's current affinity mask: ff
    8. [root@localhost ~]# taskset -p 1389
    9. pid 1389's current affinity mask: ff

    输出结构处理器亲和性掩码是ff,表示进程(或 线程)可以在Host上让任何一个CPU运行。

    taskset -cp pid
    1. [root@localhost ~]# taskset -cp 1393
    2. pid 1393's current affinity list: 0-7
    3. [root@localhost ~]# taskset -cp 1389
    4. pid 1389's current affinity list: 0-7

    查看进程(或 线程)允许允许CPU范围使用-c参数。由于我的Host CPU是4核2线程,因此有8颗逻辑CPU。

    2、设置某一进程的cpu的亲和性,也就是设置在某些cpu上运行

    taskset -p mask pid
    1. [root@localhost ~]# taskset -p 0x11 1393
    2. pid 1393's current affinity mask: ff
    3. pid 1393's new affinity mask: 11
    4. [root@localhost ~]# taskset -p 1393
    5. pid 1393's current affinity mask: 11
    6. [root@localhost ~]# taskset -cp 1393
    7. pid 1393's current affinity list: 0,4

    设置掩码0x11(二进制0001 0001),表示可以在0和4号CPU上允许运行。

    taskset -cp cpu_list pid
    1. [root@localhost ~]# taskset -cp 0,3 1393
    2. pid 1393's current affinity list: 0,4
    3. pid 1393's new affinity list: 0,3
    4. [root@localhost ~]# taskset -cp 1393
    5. pid 1393's current affinity list: 0,3

    ref:

    cat /proc/cpuinfo 查看cpu信息_城南旧梦的博客-CSDN博客_cat cpuinfo

    使用taskset命令让进程运行在指定CPU上_弹性云服务器 ECS_故障排除_操作系统类(Linux)_华为云

    taskset(1) - Linux manual page

    https://www.jianshu.com/p/2627cd875715

    Linux命令——taskset - 克拉默与矩阵 - 博客园

  • 相关阅读:
    Spring中拦截器重复注册的问题排查
    MySQL学习记录(6)索引02
    OI中组合数学公式和定理90%歼灭
    Android 系统功耗分析工具
    python爬虫(2)
    #Day Day Plan# 《NCB_PCI_Express_Base 5.0.1.0》pdf 译文笔记
    windows安装配置JDK和Tomcat
    Canvas和SVG
    go pprof 如何使用 --chatGPT
    【Prometheus】Prometheus的k8s部署
  • 原文地址:https://blog.csdn.net/wwwlyj123321/article/details/126902561