在Fedora 11上,我有超过250个进程:迁移、ksoftirqd和看门狗。
他们没有占用任何CPU或内存资源,只是睡眠而已。
那是什么?
发布于 2010-04-27 12:42:27
这些是每个cpu内核线程。如果您有16个CPU,您将得到以下输出(参见0到15的线程号)
# ps aux | grep migration
root 2 0.0 0.0 0 0 ? S< Feb22 0:27 [migration/0]
root 5 0.0 0.0 0 0 ? S< Feb22 1:07 [migration/1]
root 8 0.0 0.0 0 0 ? S< Feb22 0:38 [migration/2]
root 11 0.0 0.0 0 0 ? S< Feb22 0:22 [migration/3]
root 14 0.0 0.0 0 0 ? S< Feb22 0:23 [migration/4]
root 17 0.0 0.0 0 0 ? S< Feb22 0:06 [migration/5]
root 20 0.0 0.0 0 0 ? S< Feb22 0:01 [migration/6]
root 23 0.0 0.0 0 0 ? S< Feb22 0:01 [migration/7]
root 26 0.0 0.0 0 0 ? S< Feb22 0:04 [migration/8]
root 29 0.0 0.0 0 0 ? S< Feb22 0:29 [migration/9]
root 32 0.0 0.0 0 0 ? S< Feb22 0:19 [migration/10]
root 35 0.0 0.0 0 0 ? S< Feb22 0:12 [migration/11]
root 38 0.0 0.0 0 0 ? S< Feb22 0:09 [migration/12]
root 41 0.0 0.0 0 0 ? S< Feb22 0:19 [migration/13]
root 44 0.0 0.0 0 0 ? S< Feb22 0:16 [migration/14]
root 47 0.0 0.0 0 0 ? S< Feb22 0:09 [migration/15]您将发现ksoftirqd、看门狗和其他cpu内核线程的类似输出。
问题是当你开始看到他们在顶部吃一些CPU。是吗?这实际上意味着您的服务器负载很大。
https://serverfault.com/questions/119662
复制相似问题