13

My setup looks as follows: Windows 10, Release 1909 (Build 18363.1082), using WSL2 with an Ubuntu 20.04 environment. Everything works nicely most of the time, but there are some issues I cannot manage to solve.

During development using parcel (React bundler), I run into the problem that the bundler apparently opens lots of files at the same time, and at a certain point, I run into the following problem:

EMFILE: too many open files, open '/home/myusername/Projects/some-project-path/node_modules/@material-ui/icons/esm/RoundedCornerRounded.js'

As parcel seemingly does not easily support using something like graceful-fs, I have tried to increase the limit for open files inside the Ubuntu environment. What I have tried so far:

  • A simple ulimit -n 4096 (which is the highest possible by default), but it's apparently (by far?) not enough
  • I tried increasing fs.files-max to something really high in /etc/sysctl.conf, but it doesn't seem to have an effect (neither after sysctl -p nor after a restart of wsl)
  • I also tried increasing fs.inotify.max_user_watches, but that did not seem to have an effect either
  • Also setting soft and hard limits in /etc/security/limits.conf did not seem to have an effect
  • I also found information that changing DefaultLimitNOFILE in /etc/systemd/system.conf can have an effect (so I did that as well)

Has anybody manage to solve a similar system on Ubuntu 20.04 on WSL2? This left me pretty stumped, and it prevents me from using parcel inside this environment. That's a real pity, as really everything else is working really fine.


UPDATE

So I have found out that my changes in various places (probably the one in /etc/security/limits.conf) has had some kind of effect. Just not when logging in directly. This illustrates this:

donmartin@SOMEMACHINE:~$ ulimit -Hn
4096
donmartin@SOMEMACHINE:~$ su donmartin
Password:
donmartin@SOMEMACHINE:~$ ulimit -Hn
65536
donmartin@SOMEMACHINE:~$

Which means: If I su to my own user, the ulimit has indeed been raised. But if I log in just as normal using Windows Terminal, this limit is not in effect. Even more puzzled now - BUT - I have a workaround for my problem. Having set my values to 65536, the parcel build now works, running as my own user. Go figure! I still don't quite know which setting was changing the behaviour now - perhaps somebody has more thorough information on how this works and/or how I can make this also the default without having to do a su to get the updated limits.

donmartin
  • 1,233
  • 10
  • 25

1 Answers1

0

I had to add the following line to /etc/systemd/user.conf:

DefaultLimitNOFILE=65535

As written in the answer here:

https://superuser.com/questions/1200539/cannot-increase-open-file-limit-past-4096-ubuntu/1200818#1200818?s=1b927bb17396480da98a94cbacf8da62

Peter Salomonsen
  • 4,641
  • 1
  • 17
  • 34
  • Can you confirm that you are on WSL? The original question is about Windows Subsystem for Linux, which does not support `systemd`, so it would be surprising if editing a `systemd` configuration file would have any effect for this question. Perhaps I'm missing something; or perhaps you are? – NotTheDr01ds Apr 28 '21 at 19:08
  • This was on WSL2. I had exactly the same problem with number of open files using WSL2 with Ubuntu 20.04. First I tried limits.conf and what I'm used to from other Linux distros, and then I stumbled upon the linked answer which solved it for me. – Peter Salomonsen Apr 28 '21 at 21:03
  • 1
    Cool - As I said, I'm surprised, but thanks for confirming! – NotTheDr01ds Apr 28 '21 at 23:46