Skip to content
This repository has been archived by the owner on Oct 10, 2019. It is now read-only.

Commit

Permalink
Merge pull request #69 from brianhlin/v1_18_bosco
Browse files Browse the repository at this point in the history
Check workdir and input files before job submission (SOFTWARE-3154)
  • Loading branch information
brianhlin authored Mar 15, 2018
2 parents f6b05d7 + fda81be commit 1f6ad40
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 18 deletions.
15 changes: 13 additions & 2 deletions src/scripts/blah_common_submit_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -768,8 +768,10 @@ function bls_finish_job_wrapper ()
fi
}
function bls_test_working_dir ()
function bls_test_input_files ()
{
# Verify the workdir can be accessed before submitting the job. If a bogus workdir is
# given, the job is hopeless
if [ "x$bls_opt_workdir" != "x" ]; then
cd $bls_opt_workdir
elif [ "x$blah_set_default_workdir_to_home" == "xyes" ]; then
Expand All @@ -782,13 +784,22 @@ function bls_test_working_dir ()
rm -f $bls_tmp_file
exit 1
fi
# Ensure local files actually exist. When called before job submission, this prevents
# unnecessary churn on the scheduler if the files don't exist.
if ! bls_fl_test_exists inputsand ; then
echo "Input sandbox file doesn't exist: $bls_fl_test_exists_result" >&2
echo Error # for the sake of waiting fgets in blahpd
rm -f "$bls_tmp_file"
exit 1
fi
}
function bls_add_job_wrapper ()
{
bls_test_input_files
bls_start_job_wrapper >> $bls_tmp_file
bls_finish_job_wrapper >> $bls_tmp_file
bls_test_working_dir
}
function bls_set_up_local_and_extra_args ()
Expand Down
16 changes: 0 additions & 16 deletions src/scripts/slurm_submit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,6 @@ if [[ $bls_opt_mpinodes -gt 1 ]] ; then
echo "#SBATCH --cpus-per-task=$bls_opt_mpinodes" >> $bls_tmp_file
fi

# Verify the workdir exists before submitting the job. If a bogus workdir is
# given, the job is hopeless
if [[ ! -z "$bls_opt_workdir" && ! -d "$bls_opt_workdir" ]] ; then
echo "Error: Workdir doesn't exist" >&2
echo Error # for the sake of waiting fgets in blahpd
exit 1
fi

# Ensure local files actually exist before submitting job. This prevents
# unnecessary churn on the scheduler if the files don't exist.
if ! bls_fl_test_exists inputsand ; then
echo "Input sandbox file doesn't exist: $bls_fl_test_exists_result" >&2
echo Error # for the sake of waiting fgets in blahpd
exit 1
fi

# Do the local and extra args after all #SBATCH commands, otherwise slurm ignores anything
# after a non-#SBATCH command
bls_set_up_local_and_extra_args
Expand Down

0 comments on commit 1f6ad40

Please sign in to comment.