Skip to content
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

Very high CPU usage with new watcher #701

Closed
gaearon opened this issue Jan 20, 2015 · 27 comments
Closed

Very high CPU usage with new watcher #701

gaearon opened this issue Jan 20, 2015 · 27 comments
Labels

Comments

@gaearon
Copy link
Contributor

gaearon commented Jan 20, 2015

Now that 1.5 switched to new watcher by default, I noticed it's using a lot of CPU all the time:

screen shot 2015-01-20 at 14 30 14

It's not a Gulp issue because it goes away if I use OldWatchingPlugin.
It's also not related to compilation because it happens when Webpack is idle as well.

Any ideas?
OS X 10.10.1

@gaearon
Copy link
Contributor Author

gaearon commented Jan 20, 2015

It doesn't seem to lag so much if I explicitly install fsevents so chokidar uses it.
Still, it's about 150% and doesn't get lower.

@sokra
Copy link
Member

sokra commented Jan 20, 2015

@gaearon Is it lower for small projects? Maybe the watcher count is linear to CPU usage...

@gaearon Could you verify if fsevents is really used by chokidar?

fsevents should cause low cpu usage on OS X according to @paulmillr https://twitter.com/paulmillr/status/448600421054291970

Chokidar call: https://github.com/webpack/watchpack/blob/master/lib/DirectoryWatcher.js#L21-L27

@sokra sokra added the bug label Jan 20, 2015
@gaearon
Copy link
Contributor Author

gaearon commented Jan 20, 2015

It's strange.
Even without fsevents, I have this issue in one project but not the other.

I'm not sure what the difference is yet.
I removed most of the source files but it's still 50% CPU, whereas other project works fine.

I'll keep investigating..

@gaearon
Copy link
Contributor Author

gaearon commented Jan 20, 2015

OK, let's presume I did something stupid.
Nuking node_modules/webpack and npm install fixed the problem.

Still—I wonder if Watchpack (and Webpack) should now have fsevents as an optional dependency?
Otherwise it just doesn't get installed by default (even if it could be).
Or is this not how NPM works?

@gaearon gaearon closed this as completed Jan 20, 2015
@sokra
Copy link
Member

sokra commented Jan 20, 2015

chokidar has it as optional dep: https://github.com/paulmillr/chokidar/blob/master/package.json#L46

So theoretically it should be installed if possible when installing chokidar...

@paulmillr
Copy link

yeah everything is cool this way

@onpaws
Copy link

onpaws commented Mar 8, 2016

In case this helps someone else, I was able to fix high CPU usage by doing what gaearon suggested in a previous comment.
I had restored a Time Machine backup from Laptop A, on which I previously ran npm install, to Laptop B.
On Laptop B, deleting node_modules/ and running npm install brought CPU usage from ~45% down to 0%.

OS X 10.11.3 (on both laptops).

@josephg
Copy link

josephg commented May 1, 2016

I just ran into this too. You don't need to run npm install on your whole project again. Just npm install fsevents in the project directory.

@laggingreflex
Copy link

laggingreflex commented May 24, 2016

Facing the same issue but on Windows 10, and I can't install fsevents, it's an OS X-only module...
edit: ignoring node_modules solved it for me

@mistercrunch
Copy link

For the record, nuking node_modules/webpack and running npm install also fixed this for me.

@lexkrstn
Copy link

What should I do on Windows 8.1 to solve the issue?

  • fsevents is an OSX-only module and I cannot install it on Windows.
  • Nuking node_modules/webpack and installing it again didn't help.

All the time webpack-dev-server is running it's process consumes about ~30% of CPU.

@gaearon
Copy link
Contributor Author

gaearon commented Jul 30, 2016

@CoderLex Have you tried this? webpack/watchpack#23

@lexkrstn
Copy link

@gaearon I'm sorry for dusturbing. I've just found out the cause of my problem and it doesn't relate to this topic. The reason it consumed so much CPU was in these lines:

watchOptions: {
    aggregateTimeout: 300, // <---------
    poll: 1000, // <---------
    ignored: /node_modules/
},

I haven't even seen what they do in docs as the most of the config came from angular2-webpack-starter project. Commenting the lines solves the problem.

@winterbe
Copy link

npm install fsevents fixes the issue, however putting fsevents into package.json breaks builds on other platforms, e.g. linux. So you have to remember that every time you rm -rf node_modules && npm install you also have to do npm install fsevents.

My brain is lazy so chances are good I totally forget about in a couple of weeks. 😭

@Jessidhia
Copy link
Member

Jessidhia commented Oct 11, 2016

chokidar (the indirect dependency that depends on fsevents) will install it on its own, an an optionalDependency.

The only case fsevents may not be picked up is if you're using a shrinkwrap generated in a non-mac machine. OTOH, if you do use a shrinkwrap generated in a mac, npm install itself will fail on non-macs, so pick your poison.

@onpaws
Copy link

onpaws commented Oct 11, 2016

@winterbe I feel the same way about keeping dependencies obvious. Why not make a note in your package.json?

Because JSON doesn't support comments some folks have come up with alternative approaches.

@ngyikp
Copy link

ngyikp commented Oct 27, 2016

In my experience, this CPU hogging happens every time I upgrade node.js to a new version, I need to reinstall fsevents (or just nuke the node_modules folder and reinstall)

@Jessidhia
Copy link
Member

@ngyikp in that case, you just need npm rebuild.

chitacan added a commit to riiid/riiiact-kit that referenced this issue Nov 7, 2016
@msmfsd
Copy link

msmfsd commented Nov 24, 2016

Thanks @gaearon for this fix, saved my day 👍

@maartenscholz
Copy link

maartenscholz commented Dec 1, 2016

If you use yarn you can do yarn add fsevents --optional. This will allow you to save fsevents in package.json but it will not break builds on other platforms.

Optional dependencies are just that: optional. If they fail to install, Yarn will still say the install process was successful.
This is useful for dependencies that won’t necessarily work on every machine and you have a fallback plan in case they are not installed (e.g. Watchman).

@chemzqm
Copy link

chemzqm commented Dec 21, 2016

I should keep a note for npm rebuild

@GotJimmy
Copy link

Deleting the entire node_modules folder and npm install fixed the problem for me. Just nuking the webpack folder did not do the trick.

billyvg added a commit to getsentry/sentry that referenced this issue Jun 28, 2017
This should solve webpack using up 100% CPU on OSX.

See webpack/webpack#701

Note fsevents is an OSX only package, but having it as an "optional"
dependency means yarn will ignore build errors for the package.
@hosembafer
Copy link

Solved by simply running npm install fsevents

@danburzo
Copy link

danburzo commented Aug 28, 2018

Is this still relevant? If so, should we add a canonical solution to the docs?
I've done this:

yarn add --optional fsevents
rm -rf node_modules
yarn

and it does seem to help, but I'd love to know if these commands are actually doing anything useful or it's just magical thinking :-)

@tkluysk
Copy link

tkluysk commented Sep 11, 2018

150% in watch mode using webpack 4.17.2.

image

The fsevents fix did not work for me, but this did:
https://webpack.js.org/configuration/watch/#watchoptions-ignored

tinkertrain pushed a commit to tinkertrain/hsds-react that referenced this issue Nov 26, 2018
Webpack has an issue where on a mac, the CPU usage spikes to more than a 100%
Reference:
- storybookjs/storybook#752
- webpack/webpack#701

Adding fsevents as a dependency fixes this issue, putting as optional means it doesn't break non-mac installations
ItsJonQ pushed a commit to helpscout/hsds-react that referenced this issue Nov 27, 2018
* Adds fsevents to optional dependencies

Webpack has an issue where on a mac, the CPU usage spikes to more than a 100%
Reference:
- storybookjs/storybook#752
- webpack/webpack#701

Adding fsevents as a dependency fixes this issue, putting as optional means it doesn't break non-mac installations

* Updates Page Component

- Updates styles to match latest designs
- Improves html semantics and accessibility:
  a. Page header using <header>
  b. Headings Using <h1> and <h2>
  c. Cards use <section>
- Moves to TypeScript
- Fixes import in Accordion

* Adds Page.Heading

Pages generally have a main heading and multiple secondary ones, this component adds the ability to use <Page.Heading> with the correct styles for pages

* Adds Page.Heading docs

* Adds tests

* Update namespaces for Enzyme 3

Change the way to import React

Prettier

Run prettier on precommit
@davidcalhoun
Copy link

Strange, this just started happening to me, running around 270% CPU. Hadn't happened before, not sure what changed. @tkluysk's watchOptions comment fixed it for me.

@tonix-tuft
Copy link

npm install fsevents did it for me. Thank u guys!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests