Mve: Too many files open

Created on 31 Aug 2015  ·  11Comments  ·  Source: simonfuhrmann/mve

Hi, is there a limit how many files I can have open? I get stuck at 1021 files.

Most helpful comment

Several shells limit the number of file descriptors a process is allowed to open. Within bash you can use ulimit -n to check and set this limit. It defaults to 1024 and I assume it is maxed out in your case (stdin, stdout, stderr, prebundle and 1020 other views).
However the question is why are so many views open concurrently?

bash ulimit man page

All 11 comments

Is this related to MVE? Please post the console output and a backtrace if possible.

Program received signal SIGABRT, Aborted.
[Switching to Thread 0x7ff426a46700 (LWP 15483)]
0x00007ff42a1c7267 in __GI_raise (sig=sig@entry=6)
at ../sysdeps/unix/sysv/linux/raise.c:55
55 ../sysdeps/unix/sysv/linux/raise.c: No such file or directory.
(gdb) bt

0 0x00007ff42a1c7267 in __GI_raise (sig=sig@entry=6)

at ../sysdeps/unix/sysv/linux/raise.c:55

1 0x00007ff42a1c8eca in __GI_abort () at abort.c:89

2 0x00007ff42af1006d in __gnu_cxx::__verbose_terminate_handler() ()

from /usr/lib/x86_64-linux-gnu/libstdc++.so.6

3 0x00007ff42af0dee6 in ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6

4 0x00007ff42af0cee9 in ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6

5 0x00007ff42af0d6ea in __gxx_personality_v0 ()

from /usr/lib/x86_64-linux-gnu/libstdc++.so.6

6 0x00007ff42a789ed3 in ?? () from /lib/x86_64-linux-gnu/libgcc_s.so.1

7 0x00007ff42a78a3f7 in _Unwind_Resume ()

from /lib/x86_64-linux-gnu/libgcc_s.so.1

8 0x00000000004d58f1 in _M_dispose (__a=..., this=)

at /usr/include/c++/4.9/bits/basic_string.h:240

9 ~basic_string (this=0x7ff426a457b0, __in_chrg=)

at /usr/include/c++/4.9/bits/basic_string.h:547

10 mve::View::load_image_intern (this=,

proxy=proxy@entry=0x1cd4af0, init_only=init_only@entry=false)
at view.cc:790

11 0x00000000004d5baa in mve::View::load_image (this=this@entry=0x1cd4780,

proxy=proxy@entry=0x1cd4af0, update=update@entry=false) at view.cc:739

12 0x00000000004d5c30 in mve::View::get_image (this=0x1cd4780,

this@entry=0x3fc, name="original", type=type@entry=mve::IMAGE_TYPE_UINT8)

---Type to continue, or q to quit---
at view.cc:405

13 0x0000000000435de7 in get_byte_image (name="original", this=0x3fc)

at ../../libs/mve/view.h:436

14 sfm::bundler::Features::compute () at bundler_features.cc:56

15 0x00007ff42a99dc16 in ?? () from /usr/lib/x86_64-linux-gnu/libgomp.so.1

16 0x00007ff42a5636aa in start_thread (arg=0x7ff426a46700)

at pthread_create.c:333

17 0x00007ff42a298eed in clone ()

at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Are you working with the latest version of MVE? Can the problem be consistently reproduced? Is this a particularly large dataset? Where did you get the Too many files open error message from, I cannot see it in the console output.

I reproduced it several times on two different computers and always with the latest version of MVE. The error occurs during the feature detection and always at file 1021. The dataset is huge and about 16000 pictures.

View ID 1013 (1920x1080), 1860 features, took 3268 ms.
Detecting features, view 1021 of 16295 (6.2%)...terminate called after throwing an instance of 'util::Exception'
what(): Error opening file: Too many open files
Aborted (core dumped)

Several shells limit the number of file descriptors a process is allowed to open. Within bash you can use ulimit -n to check and set this limit. It defaults to 1024 and I assume it is maxed out in your case (stdin, stdout, stderr, prebundle and 1020 other views).
However the question is why are so many views open concurrently?

bash ulimit man page

Still too many files open. ulimit of course "solves" it.

We will take another look.

Hi Jus80687,
we've tried to reproduce the bug with the patch applied but were unsuccessful. Are you sure you have compiled an up-to-date version of the code?
Also, after how many files does the error happen with the patch applied? Can you post a backtrace when it happens?
Can you send us the contents of one of the view_xxxx.mve directories of your dataset please?
Thanks in advance.

Hi Andre,
yes, i compiled the latest version of MVE. After the patch the error happens not at exactly at the same view anymore, but still around 1024. The workaround with ulimit of course still works.
I don't think it is related to a specific view since I changed the number of pictures a few times. The pictures themselves are extracted from a movie and have no EXIF information.
The console output has not changed but I have to check the backtrace again.
Thanks for your help

At this point we need additional data to reproduce the problem. Can you please send us a ZIP of one of your views? Thanks.

Any more additional information? Otherwise the issue will be closed.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

HelliceSaouli picture HelliceSaouli  ·  14Comments

GustavoCamargoRL picture GustavoCamargoRL  ·  13Comments

MaxDidIt picture MaxDidIt  ·  30Comments

daleydeng picture daleydeng  ·  8Comments

HelliceSaouli picture HelliceSaouli  ·  12Comments