-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
com.docker.supervisor 100% cpu usage #2923
Comments
Unfortunately I didn't export a CPU-Time analysis of the stack-trace, which would have been more useful in this case. I'll post one, if the issue re-appears. |
Having a similar issue, but mine hovers between ~95% and ~105%. OSX |
My machine is about to take off I think!
|
Same issue here, Diagnostic ID |
We believe that this issue was identified and fixed recently (https://github.com/docker/pinata/pull/9355). |
I also submitted a Diag yesterday for the same incident. |
@akimd Is the |
Yes, it is, sorry about that. |
@akimd looks like a newer version 24677 is out, I'm testing that today. |
I have been experiencing this issue (twice in two days) with By the way @BretFisher how do you get |
I gave a link to 24648 above. Using random builds by playing with the numbers over there is asking for trouble, be sure to use only versions one of us pointed to. |
So far everything is fine on |
Good. Let's close this. Thanks all! |
When does that build/those fixes get incorporated into the next Edge release? |
Same issue here on |
yikez, this is killing me! I am on I'm on battery life right now, was at 80%, walked away to get coffee and apparently it started as my machine went into sleep mode? I came back 20minutes later with 15% battery! I absolutely love docker and have integrated it into all my workflows. Hope this resolves quickly :( |
Just caught this using 226% of my CPU, draining my battery like crazy, same release as rkingon above. |
I, too, am observing this on 18.06.1-ce-mac73. The described behaviour appears to commence without any overt action taken by any operator of the computing system. A typical scenario is that one retires in the eventide with a normal device—to the touch somewhat lukewarm—and returns on the morrow only to find a blistering gale issuing from the ventilation apertures. On further inspection, one then sees that the com.docker.supervisor process greedily performs its enigmatic operations and that a stream of packets, in tirelessness commensurate, is being transmitted across (as an observer above has noted) what appears to be a local interface: for such traffic is seemingly undisturbed by the disabling of all external network interfaces. Further, having observed the above-described process continuing uninterrupted for hours, one assumes that it is unceasing and therefore tires rather than awaits the conclusion of that which is ostensibly unceasing. An interim measure that I have adopted is to terminate the offending process (that is, com.docker.supervisor). Such an action could, peradventure, give rise to a slight degradation in the feature richness manifested by the application components, however. By which I mean +1. |
I'm experiencing the same issue. Diagnostic ID |
@akimd Could this please be re-opened? The issue is not fixed. |
100% not fixed -- happens to me almost every day! i'm pretty sure I've lost life out of my computer from letting it heat up and sit at 100+% cpu =/ (and not realizing it) |
Also experiencing this issue here as well - Diagnostic ID |
Same. still occurring for me: |
I'm seeing this as well on Docker version 18.09.0. The supervisor is sending 100,000s of (NTP?) packages per second to my local launchdns daemon:
Instruments shows the following as the heaviest stack trace:
|
It should be noted that launchdns simply echos invalid DNS requests with bytes 3-4 set to 0x8103: while (quit == 0) {
int n = recvfrom(sd, msg, RECV_SIZE, flags, &caddr, &len);
...
} else {
// NXDomain
msg[2] = 0x81;
msg[3] = 0x03;
}
sendto(sd, msg, n, flags, &caddr, len);
} The mystery to me is why the Docker supervisor is sending NTP packets to a DNS server. |
@ltm:
Nice find! I'm seeing this exact same behaviour:
This keeps Docker, kernel_task and launchdns locked into consuming 2.5 cores: Restarting Definitely still an outstanding bug here. |
I'm also unsure if this issue has actually been resolved. |
+1 i see this every day |
@chrisharrisonkiwi A new issue was opened for this. Please see #3565. |
Closed issues are locked after 30 days of inactivity. If you have found a problem that seems similar to this, please open a new issue. Send feedback to Docker Community Slack channels #docker-for-mac or #docker-for-windows. |
After recently updating to 18.05.0-ce-mac66 (24545) on macOS 10.13.4 (17E202) I noticed today that the com.docker.supervisor process had started to have 100% cpu usage over night.
I have uploaded a stack-trace of the com.docker.supervisor process when it was eating all cpu in the following gist: https://gist.github.com/09b8f0a0d7c960e06b671e4a9faab13a
The problem could be fixed by killing the supervisor process and restarting Docker for Mac.
The text was updated successfully, but these errors were encountered: