I was trying to set maximum filesize using bsub -F option. But there is no manual suggesting max value.
Can some body please help in setting maximum value for filesize limit.
I was trying to set maximum filesize using bsub -F option. But there is no manual suggesting max value.
Can some body please help in setting maximum value for filesize limit.
As Squirrel comments, this is an application specific choice. This is an optional input and I think the idea here is to prevent a runaway job from filling up storage space. If a job exceeds this limit, LSF will be kill that job.
Quote from documentation:
-F file_limit
Sets a per-process (soft) file size limit for each of the processes that belong to the job (see getrlimit(2)). The limit is specified in KB.
If a job process attempts to write to a file that exceeds the file size limit, then that process is sent a SIGXFSZ signal. The SIGXFSZ signal normally terminates the process.