Products | Versions |
---|---|
Spotfire Data Science Team Studio | 6.5.0 |
When a user is trying to run a workflow, it fails immediately with an error that involves "Too many open files". User is unable to run any workflows at this time.
When a user receives this error, it shows that the Operating System that Team Studio runs on has reached the maximum number of open files. We will need to raise this number of open files limit to a larger number as the default is set to 1024. You will need OS admin access.
Please modify the following 2 files as root user:
vi /etc/security/limits.conf
vi /etc/security/limits.d/20-nproc.conf (File name might not be exact, but similar)
Append the following to both files:
* soft nofile 65536 * hard nofile 65536 * soft nproc 131072 * hard nproc 131072
vi /etc/sysctl.conf
Append the following:
kernel.shmmax = 500000000 kernel.shmall = 4000000000
Restart Team Studio for changes to apply.