From 91d7f86ad3dbe0245899b54acd9294332765f97d Mon Sep 17 00:00:00 2001 From: wxy Date: Mon, 28 Sep 2015 10:44:42 +0800 Subject: [PATCH] PUB:20150916 Linux FAQs with Answers--How to find out which CPU core a process is running on @strugglingyouth --- ... which CPU core a process is running on.md | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) rename {translated/tech => published}/20150916 Linux FAQs with Answers--How to find out which CPU core a process is running on.md (63%) diff --git a/translated/tech/20150916 Linux FAQs with Answers--How to find out which CPU core a process is running on.md b/published/20150916 Linux FAQs with Answers--How to find out which CPU core a process is running on.md similarity index 63% rename from translated/tech/20150916 Linux FAQs with Answers--How to find out which CPU core a process is running on.md rename to published/20150916 Linux FAQs with Answers--How to find out which CPU core a process is running on.md index d901b95030..be9b16e5e4 100644 --- a/translated/tech/20150916 Linux FAQs with Answers--How to find out which CPU core a process is running on.md +++ b/published/20150916 Linux FAQs with Answers--How to find out which CPU core a process is running on.md @@ -1,16 +1,16 @@ -Linux 有问必答--如何找出哪个 CPU 内核正在运行进程 +Linux 有问必答:如何知道进程运行在哪个 CPU 内核上? ================================================================================ >问题:我有个 Linux 进程运行在多核处理器系统上。怎样才能找出哪个 CPU 内核正在运行该进程? -当你运行需要较高性能的 HPC 程序或非常消耗网络资源的程序在 [多核 NUMA 处理器上][1],CPU/memory 的亲和力是限度其发挥最大性能的重要因素之一。在同一 NUMA 节点上调整程序的亲和力可以减少远程内存访问。像英特尔 Sandy Bridge 处理器,该处理器有一个集成的 PCIe 控制器,要调整同一 NUMA 节点的网络 I/O 负载可以使用 网卡控制 PCI 和 CPU 亲和力。 +当你在 [多核 NUMA 处理器上][1]运行需要较高性能的 HPC(高性能计算)程序或非常消耗网络资源的程序时,CPU/memory 的亲和力是限度其发挥最大性能的重要因素之一。在同一 NUMA 节点上调度最相关的进程可以减少缓慢的远程内存访问。像英特尔 Sandy Bridge 处理器,该处理器有一个集成的 PCIe 控制器,你可以在同一 NUMA 节点上调度网络 I/O 负载(如网卡)来突破 PCI 到 CPU 亲和力限制。 -由于性能优化和故障排除只是一部分,你可能想知道哪个 CPU 内核(或 NUMA 节点)被调度运行特定的进程。 +作为性能优化和故障排除的一部分,你可能想知道特定的进程被调度到哪个 CPU 内核(或 NUMA 节点)上运行。 -这里有几种方法可以 **找出哪个 CPU 内核被调度来运行 给定的 Linux 进程或线程**。 +这里有几种方法可以 **找出哪个 CPU 内核被调度来运行给定的 Linux 进程或线程**。 ### 方法一 ### -如果一个进程明确的被固定到 CPU 的特定内核,如使用 [taskset][2] 命令,你可以使用 taskset 命令找出被固定的 CPU 内核: +如果一个进程使用 [taskset][2] 命令明确的被固定(pinned)到 CPU 的特定内核上,你可以使用 taskset 命令找出被固定的 CPU 内核: $ taskset -c -p @@ -22,19 +22,18 @@ Linux 有问必答--如何找出哪个 CPU 内核正在运行进程 pid 5357's current affinity list: 5 -输出显示这个过程被固定在 CPU 内核 5。 +输出显示这个过程被固定在 CPU 内核 5上。 但是,如果你没有明确固定进程到任何 CPU 内核,你会得到类似下面的亲和力列表。 pid 5357's current affinity list: 0-11 -输出表明,该进程可能会被安排在从0到11中的任何一个 CPU 内核。在这种情况下,taskset 不会识别该进程当前被分配给哪个 CPU 内核,你应该使用如下所述的方法。 +输出表明该进程可能会被安排在从0到11中的任何一个 CPU 内核。在这种情况下,taskset 不能识别该进程当前被分配给哪个 CPU 内核,你应该使用如下所述的方法。 ### 方法二 ### ps 命令可以告诉你每个进程/线程目前分配到的 (在“PSR”列)CPU ID。 - $ ps -o pid,psr,comm -p ---------- @@ -42,7 +41,7 @@ ps 命令可以告诉你每个进程/线程目前分配到的 (在“PSR”列 PID PSR COMMAND 5357 10 prog -输出表示进程的 PID 为 5357(名为"prog")目前在CPU 内核 10 上运行着。如果该过程没有被固定,PSR 列可以保持随着时间变化,内核可能调度该进程到不同位置。 +输出表示进程的 PID 为 5357(名为"prog")目前在CPU 内核 10 上运行着。如果该过程没有被固定,PSR 列会根据内核可能调度该进程到不同内核而改变显示。 ### 方法三 ### @@ -72,11 +71,11 @@ via: http://ask.xmodulo.com/cpu-core-process-is-running.html 作者:[Dan Nanni][a] 译者:[strugglingyouth](https://github.com/strugglingyouth) -校对:[校对者ID](https://github.com/校对者ID) +校对:[wxy](https://github.com/wxy) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]:http://ask.xmodulo.com/author/nanni [1]:http://xmodulo.com/identify-cpu-processor-architecture-linux.html [2]:http://xmodulo.com/run-program-process-specific-cpu-cores-linux.html -[3]:http://ask.xmodulo.com/install-htop-centos-rhel.html +[3]:https://linux.cn/article-3141-1.html