On compute-heavy machines, Indexima will leverage the CPUs by opening and reading files simultaneously. This can cause crashes if you didn't set enough authorized file descriptors for the user.

To increase the maximum number of open files on a Linux machine, you must open the file usually located in /etc/security/limits.conf and add the following line:

limits.conf

*        -     nofile  65536
BASH

You can check that the change has been made with the following command:

ulimit -n
BASH

If you are starting Indexima with systemd, you need to add this line to your indexima.service file, under the [Service] block:

indexima.service

LimitNOFILE=65536
BASH