High CPU usage on mongodb server when idle?MongoDB Socket Exceptions when moving chunksMongoDB virtual memory usageMongoDB and datasets that don't fit in RAM no matter how hard you shoveMongoDB server crashed, showing the following errorMongoDB CPU usage in top is confusingserver load too high on mongodb serverMongoDB high CPU usageHow to get MongoDB server local time?MongoDB mongos memory usageMongoDB WiredTiger storage not using two CPU cores
Have GoT's showrunners reacted to the poor reception of the final season?
How do you cope with rejection?
Why are there five extra turns in tournament Magic?
Can 2 light bulbs of 120V in series be used on 230V AC?
RegEx with d doesn’t work in if-else statement with [[
Quotient of Three Dimensional Torus by Permutation on Coordinates
How was the blinking terminal cursor invented?
How would fantasy dwarves exist, realistically?
Will this series of events work to drown a tarrasque?
Cycling to work - 30mile return
multicol package causes underfull hbox
Why does a table with a defined constant in its index compute 10X slower?
on the truth quest vs in the quest for truth
What technology would Dwarves need to forge titanium?
Why use a retrograde orbit?
What color to choose as "danger" if the main color of my app is red
Is it standard to have the first week's pay indefinitely withheld?
Gaussian kernel density estimation with data from file
Appropriate liquid/solvent for life in my underground environment on Venus
Was Tyrion always a poor strategist?
Bookshelves: the intruder
What would be the game balance implications for using the Gygax method for applying falling damage?
How can I monitor the bulk API limit?
Windows reverting changes made by Linux to FAT32 partion
High CPU usage on mongodb server when idle?
MongoDB Socket Exceptions when moving chunksMongoDB virtual memory usageMongoDB and datasets that don't fit in RAM no matter how hard you shoveMongoDB server crashed, showing the following errorMongoDB CPU usage in top is confusingserver load too high on mongodb serverMongoDB high CPU usageHow to get MongoDB server local time?MongoDB mongos memory usageMongoDB WiredTiger storage not using two CPU cores
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm getting strange usage numbers on MongoDB server when it is in almost idle state: http://pastebin.com/cKVyGMts (no queries) DB size is about 3.3 Gb.
I can see in mongodb.log that snapshotthread is eating too much CPU:
Wed Nov 28 19:02:14 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:18 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:22 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:26 [snapshotthread] cpu: elapsed:4000 writelock: 0%
And data from top confirms it: http://pastebin.com/d57ybpBJ (iotop shows that there are no high disk activity present).
I'm running high-cpu instance on EC2, mongo confing and startup information is here: http://pastebin.com/YZyyq0gc.
How I can disable snapshotting or what can cause such a high CPU usage?
mongodb
add a comment |
I'm getting strange usage numbers on MongoDB server when it is in almost idle state: http://pastebin.com/cKVyGMts (no queries) DB size is about 3.3 Gb.
I can see in mongodb.log that snapshotthread is eating too much CPU:
Wed Nov 28 19:02:14 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:18 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:22 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:26 [snapshotthread] cpu: elapsed:4000 writelock: 0%
And data from top confirms it: http://pastebin.com/d57ybpBJ (iotop shows that there are no high disk activity present).
I'm running high-cpu instance on EC2, mongo confing and startup information is here: http://pastebin.com/YZyyq0gc.
How I can disable snapshotting or what can cause such a high CPU usage?
mongodb
Whet version of MongoDB are you using?
– FINESEC
Nov 28 '12 at 15:12
db version v2.0.8 from 10gen repo Centos 6.2
– Andrei Mikhaltsov
Nov 28 '12 at 15:14
did you try turning off snapshotting? cpu = false or just comment out cpu=true. Also check this bug out: jira.mongodb.org/browse/SERVER-2114
– Asya Kamsky
Dec 5 '12 at 22:29
Thanks, turning off snaphotting didnt cause any effect. I've straced mongo and found that log is filled with select and setsockopts: select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout)
– Andrei Mikhaltsov
Dec 6 '12 at 10:11
How is "Cpu(s): 3.0%us, 1.0%sy, 0.0%ni, 95.5%id, 0.3%wa, 0.0%hi, 0.1%si, 0.0%st" high load? That's 95+% idle.
– David Schwartz
Dec 1 '15 at 6:31
add a comment |
I'm getting strange usage numbers on MongoDB server when it is in almost idle state: http://pastebin.com/cKVyGMts (no queries) DB size is about 3.3 Gb.
I can see in mongodb.log that snapshotthread is eating too much CPU:
Wed Nov 28 19:02:14 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:18 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:22 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:26 [snapshotthread] cpu: elapsed:4000 writelock: 0%
And data from top confirms it: http://pastebin.com/d57ybpBJ (iotop shows that there are no high disk activity present).
I'm running high-cpu instance on EC2, mongo confing and startup information is here: http://pastebin.com/YZyyq0gc.
How I can disable snapshotting or what can cause such a high CPU usage?
mongodb
I'm getting strange usage numbers on MongoDB server when it is in almost idle state: http://pastebin.com/cKVyGMts (no queries) DB size is about 3.3 Gb.
I can see in mongodb.log that snapshotthread is eating too much CPU:
Wed Nov 28 19:02:14 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:18 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:22 [snapshotthread] cpu: elapsed:4000 writelock: 0%
Wed Nov 28 19:02:26 [snapshotthread] cpu: elapsed:4000 writelock: 0%
And data from top confirms it: http://pastebin.com/d57ybpBJ (iotop shows that there are no high disk activity present).
I'm running high-cpu instance on EC2, mongo confing and startup information is here: http://pastebin.com/YZyyq0gc.
How I can disable snapshotting or what can cause such a high CPU usage?
mongodb
mongodb
edited Apr 26 '17 at 12:44
Roald Nefs
31429
31429
asked Nov 28 '12 at 15:06
Andrei MikhaltsovAndrei Mikhaltsov
2,34411729
2,34411729
Whet version of MongoDB are you using?
– FINESEC
Nov 28 '12 at 15:12
db version v2.0.8 from 10gen repo Centos 6.2
– Andrei Mikhaltsov
Nov 28 '12 at 15:14
did you try turning off snapshotting? cpu = false or just comment out cpu=true. Also check this bug out: jira.mongodb.org/browse/SERVER-2114
– Asya Kamsky
Dec 5 '12 at 22:29
Thanks, turning off snaphotting didnt cause any effect. I've straced mongo and found that log is filled with select and setsockopts: select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout)
– Andrei Mikhaltsov
Dec 6 '12 at 10:11
How is "Cpu(s): 3.0%us, 1.0%sy, 0.0%ni, 95.5%id, 0.3%wa, 0.0%hi, 0.1%si, 0.0%st" high load? That's 95+% idle.
– David Schwartz
Dec 1 '15 at 6:31
add a comment |
Whet version of MongoDB are you using?
– FINESEC
Nov 28 '12 at 15:12
db version v2.0.8 from 10gen repo Centos 6.2
– Andrei Mikhaltsov
Nov 28 '12 at 15:14
did you try turning off snapshotting? cpu = false or just comment out cpu=true. Also check this bug out: jira.mongodb.org/browse/SERVER-2114
– Asya Kamsky
Dec 5 '12 at 22:29
Thanks, turning off snaphotting didnt cause any effect. I've straced mongo and found that log is filled with select and setsockopts: select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout)
– Andrei Mikhaltsov
Dec 6 '12 at 10:11
How is "Cpu(s): 3.0%us, 1.0%sy, 0.0%ni, 95.5%id, 0.3%wa, 0.0%hi, 0.1%si, 0.0%st" high load? That's 95+% idle.
– David Schwartz
Dec 1 '15 at 6:31
Whet version of MongoDB are you using?
– FINESEC
Nov 28 '12 at 15:12
Whet version of MongoDB are you using?
– FINESEC
Nov 28 '12 at 15:12
db version v2.0.8 from 10gen repo Centos 6.2
– Andrei Mikhaltsov
Nov 28 '12 at 15:14
db version v2.0.8 from 10gen repo Centos 6.2
– Andrei Mikhaltsov
Nov 28 '12 at 15:14
did you try turning off snapshotting? cpu = false or just comment out cpu=true. Also check this bug out: jira.mongodb.org/browse/SERVER-2114
– Asya Kamsky
Dec 5 '12 at 22:29
did you try turning off snapshotting? cpu = false or just comment out cpu=true. Also check this bug out: jira.mongodb.org/browse/SERVER-2114
– Asya Kamsky
Dec 5 '12 at 22:29
Thanks, turning off snaphotting didnt cause any effect. I've straced mongo and found that log is filled with select and setsockopts: select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout)
– Andrei Mikhaltsov
Dec 6 '12 at 10:11
Thanks, turning off snaphotting didnt cause any effect. I've straced mongo and found that log is filled with select and setsockopts: select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout)
– Andrei Mikhaltsov
Dec 6 '12 at 10:11
How is "Cpu(s): 3.0%us, 1.0%sy, 0.0%ni, 95.5%id, 0.3%wa, 0.0%hi, 0.1%si, 0.0%st" high load? That's 95+% idle.
– David Schwartz
Dec 1 '15 at 6:31
How is "Cpu(s): 3.0%us, 1.0%sy, 0.0%ni, 95.5%id, 0.3%wa, 0.0%hi, 0.1%si, 0.0%st" high load? That's 95+% idle.
– David Schwartz
Dec 1 '15 at 6:31
add a comment |
1 Answer
1
active
oldest
votes
According to JIRA some changes where made to memory allocation algorithm in version 2.2.0, which possibly could fix this issue.
MongoDB high CPU usage, low disk IO, very slow response
thank you for the answer!! unfortunately, this didn't work ;/ upgraded to db version v2.2.2, pdfile version 4.5 git version: d1b43b61a5308c4ad0679d34b262c5af9d664267
– Andrei Mikhaltsov
Nov 28 '12 at 15:54
ok, did you try to disable NUMA? mongodb.org/display/DOCS/NUMA
– FINESEC
Nov 28 '12 at 16:28
restarted server with command: numactl --interleave=all /usr/bin/mongod --config /etc/mongod.conf (cat /proc/sys/vm/zone_reclaim_mode 0 - no luck;/
– Andrei Mikhaltsov
Nov 28 '12 at 16:43
ok, try to increase syncdelay: docs.mongodb.org/manual/reference/mongod/…
– FINESEC
Nov 28 '12 at 17:20
no luck;/ i now think the problem is more OS specific pastebin.com/yaGL4cYm because i have 8 cores and mongod CPU usage is 2200% (!!!??) i'll try to update CentOS to the lastest version.
– Andrei Mikhaltsov
Nov 29 '12 at 10:22
|
show 2 more comments
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f453046%2fhigh-cpu-usage-on-mongodb-server-when-idle%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to JIRA some changes where made to memory allocation algorithm in version 2.2.0, which possibly could fix this issue.
MongoDB high CPU usage, low disk IO, very slow response
thank you for the answer!! unfortunately, this didn't work ;/ upgraded to db version v2.2.2, pdfile version 4.5 git version: d1b43b61a5308c4ad0679d34b262c5af9d664267
– Andrei Mikhaltsov
Nov 28 '12 at 15:54
ok, did you try to disable NUMA? mongodb.org/display/DOCS/NUMA
– FINESEC
Nov 28 '12 at 16:28
restarted server with command: numactl --interleave=all /usr/bin/mongod --config /etc/mongod.conf (cat /proc/sys/vm/zone_reclaim_mode 0 - no luck;/
– Andrei Mikhaltsov
Nov 28 '12 at 16:43
ok, try to increase syncdelay: docs.mongodb.org/manual/reference/mongod/…
– FINESEC
Nov 28 '12 at 17:20
no luck;/ i now think the problem is more OS specific pastebin.com/yaGL4cYm because i have 8 cores and mongod CPU usage is 2200% (!!!??) i'll try to update CentOS to the lastest version.
– Andrei Mikhaltsov
Nov 29 '12 at 10:22
|
show 2 more comments
According to JIRA some changes where made to memory allocation algorithm in version 2.2.0, which possibly could fix this issue.
MongoDB high CPU usage, low disk IO, very slow response
thank you for the answer!! unfortunately, this didn't work ;/ upgraded to db version v2.2.2, pdfile version 4.5 git version: d1b43b61a5308c4ad0679d34b262c5af9d664267
– Andrei Mikhaltsov
Nov 28 '12 at 15:54
ok, did you try to disable NUMA? mongodb.org/display/DOCS/NUMA
– FINESEC
Nov 28 '12 at 16:28
restarted server with command: numactl --interleave=all /usr/bin/mongod --config /etc/mongod.conf (cat /proc/sys/vm/zone_reclaim_mode 0 - no luck;/
– Andrei Mikhaltsov
Nov 28 '12 at 16:43
ok, try to increase syncdelay: docs.mongodb.org/manual/reference/mongod/…
– FINESEC
Nov 28 '12 at 17:20
no luck;/ i now think the problem is more OS specific pastebin.com/yaGL4cYm because i have 8 cores and mongod CPU usage is 2200% (!!!??) i'll try to update CentOS to the lastest version.
– Andrei Mikhaltsov
Nov 29 '12 at 10:22
|
show 2 more comments
According to JIRA some changes where made to memory allocation algorithm in version 2.2.0, which possibly could fix this issue.
MongoDB high CPU usage, low disk IO, very slow response
According to JIRA some changes where made to memory allocation algorithm in version 2.2.0, which possibly could fix this issue.
MongoDB high CPU usage, low disk IO, very slow response
answered Nov 28 '12 at 15:27
FINESECFINESEC
1,26178
1,26178
thank you for the answer!! unfortunately, this didn't work ;/ upgraded to db version v2.2.2, pdfile version 4.5 git version: d1b43b61a5308c4ad0679d34b262c5af9d664267
– Andrei Mikhaltsov
Nov 28 '12 at 15:54
ok, did you try to disable NUMA? mongodb.org/display/DOCS/NUMA
– FINESEC
Nov 28 '12 at 16:28
restarted server with command: numactl --interleave=all /usr/bin/mongod --config /etc/mongod.conf (cat /proc/sys/vm/zone_reclaim_mode 0 - no luck;/
– Andrei Mikhaltsov
Nov 28 '12 at 16:43
ok, try to increase syncdelay: docs.mongodb.org/manual/reference/mongod/…
– FINESEC
Nov 28 '12 at 17:20
no luck;/ i now think the problem is more OS specific pastebin.com/yaGL4cYm because i have 8 cores and mongod CPU usage is 2200% (!!!??) i'll try to update CentOS to the lastest version.
– Andrei Mikhaltsov
Nov 29 '12 at 10:22
|
show 2 more comments
thank you for the answer!! unfortunately, this didn't work ;/ upgraded to db version v2.2.2, pdfile version 4.5 git version: d1b43b61a5308c4ad0679d34b262c5af9d664267
– Andrei Mikhaltsov
Nov 28 '12 at 15:54
ok, did you try to disable NUMA? mongodb.org/display/DOCS/NUMA
– FINESEC
Nov 28 '12 at 16:28
restarted server with command: numactl --interleave=all /usr/bin/mongod --config /etc/mongod.conf (cat /proc/sys/vm/zone_reclaim_mode 0 - no luck;/
– Andrei Mikhaltsov
Nov 28 '12 at 16:43
ok, try to increase syncdelay: docs.mongodb.org/manual/reference/mongod/…
– FINESEC
Nov 28 '12 at 17:20
no luck;/ i now think the problem is more OS specific pastebin.com/yaGL4cYm because i have 8 cores and mongod CPU usage is 2200% (!!!??) i'll try to update CentOS to the lastest version.
– Andrei Mikhaltsov
Nov 29 '12 at 10:22
thank you for the answer!! unfortunately, this didn't work ;/ upgraded to db version v2.2.2, pdfile version 4.5 git version: d1b43b61a5308c4ad0679d34b262c5af9d664267
– Andrei Mikhaltsov
Nov 28 '12 at 15:54
thank you for the answer!! unfortunately, this didn't work ;/ upgraded to db version v2.2.2, pdfile version 4.5 git version: d1b43b61a5308c4ad0679d34b262c5af9d664267
– Andrei Mikhaltsov
Nov 28 '12 at 15:54
ok, did you try to disable NUMA? mongodb.org/display/DOCS/NUMA
– FINESEC
Nov 28 '12 at 16:28
ok, did you try to disable NUMA? mongodb.org/display/DOCS/NUMA
– FINESEC
Nov 28 '12 at 16:28
restarted server with command: numactl --interleave=all /usr/bin/mongod --config /etc/mongod.conf (cat /proc/sys/vm/zone_reclaim_mode 0 - no luck;/
– Andrei Mikhaltsov
Nov 28 '12 at 16:43
restarted server with command: numactl --interleave=all /usr/bin/mongod --config /etc/mongod.conf (cat /proc/sys/vm/zone_reclaim_mode 0 - no luck;/
– Andrei Mikhaltsov
Nov 28 '12 at 16:43
ok, try to increase syncdelay: docs.mongodb.org/manual/reference/mongod/…
– FINESEC
Nov 28 '12 at 17:20
ok, try to increase syncdelay: docs.mongodb.org/manual/reference/mongod/…
– FINESEC
Nov 28 '12 at 17:20
no luck;/ i now think the problem is more OS specific pastebin.com/yaGL4cYm because i have 8 cores and mongod CPU usage is 2200% (!!!??) i'll try to update CentOS to the lastest version.
– Andrei Mikhaltsov
Nov 29 '12 at 10:22
no luck;/ i now think the problem is more OS specific pastebin.com/yaGL4cYm because i have 8 cores and mongod CPU usage is 2200% (!!!??) i'll try to update CentOS to the lastest version.
– Andrei Mikhaltsov
Nov 29 '12 at 10:22
|
show 2 more comments
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f453046%2fhigh-cpu-usage-on-mongodb-server-when-idle%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Whet version of MongoDB are you using?
– FINESEC
Nov 28 '12 at 15:12
db version v2.0.8 from 10gen repo Centos 6.2
– Andrei Mikhaltsov
Nov 28 '12 at 15:14
did you try turning off snapshotting? cpu = false or just comment out cpu=true. Also check this bug out: jira.mongodb.org/browse/SERVER-2114
– Asya Kamsky
Dec 5 '12 at 22:29
Thanks, turning off snaphotting didnt cause any effect. I've straced mongo and found that log is filled with select and setsockopts: select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout) select(10, [8 9], NULL, NULL, 0, 10000) = 0 (Timeout)
– Andrei Mikhaltsov
Dec 6 '12 at 10:11
How is "Cpu(s): 3.0%us, 1.0%sy, 0.0%ni, 95.5%id, 0.3%wa, 0.0%hi, 0.1%si, 0.0%st" high load? That's 95+% idle.
– David Schwartz
Dec 1 '15 at 6:31