Email notification

When a batch job completes or exits, LSF by default sends a job report by email to the submitting user account. The report includes the following information:
  • Standard output (stdout) of the job

  • Standard error (stderr) of the job

  • LSF job information such as CPU, process, and memory usage

The output from stdout and stderr are merged together in the order printed, as if the job was run interactively. The default standard input (stdin) file is the null device. The null device on UNIX is /dev/null.

Enable the LSB_POSTEXEC_SEND_MAIL parameter in lsf.conf to have LSF send a second email to the user that provides details of the post execution, if any. This includes any applicable output.

bsub mail options

-B

Start of changeSends email to the job submitter when the job is dispatched and begins running. The default destination for email is defined by LSB_MAILTO in lsf.conf. End of change

-u user_name

Start of changeIf you want mail sent to another user, use the -u user_name option to the bsub command. Mail associated with the job will be sent to the named user instead of to the submitting user account. End of change

-N

Start of changeIf you want to separate the job report information from the job output, use the -N option to specify that the job report information should be sent by email. End of change

Users can set the environment variable LSB_JOB_REPORT_MAIL=N at job submission to disable email notification.

Output and error file options (-o output_file, -e error_file, -oo output_file, and -eo error_file)

The output file created by the -o and -oo options to the bsub command normally contains job report information as well as the job output. This information includes the submitting user and host, the execution host, the CPU time (user plus system time) used by the job, and the exit status.

If you specify a -o output_file or -oo output_file option and do not specify a -e error_file or -eo error_file option, the standard output and standard error are merged and stored in output_file. You can also specify the standard input file if the job needs to read input from stdin.

Note:

The file path can contain up to 4094 characters for UNIX and Linux, or up to 255 characters for Windows, including the directory, file name, and expanded values for %J (job_ID) and %I (index_ID).

The output files specified by the output and error file options are created on the execution host.