From bf43a3b0b5b75b68a3389537a77f871c66bb0cc4 Mon Sep 17 00:00:00 2001 From: Wirawan Purwanto Date: Mon, 8 Aug 2016 10:00:32 -0400 Subject: [PATCH] * sge-dump-job-status.sh: Initial version of a tool to dump desirable SGE info from a running job. --- sge/sge-dump-job-status.sh | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100755 sge/sge-dump-job-status.sh diff --git a/sge/sge-dump-job-status.sh b/sge/sge-dump-job-status.sh new file mode 100755 index 0000000..6a7d29b --- /dev/null +++ b/sge/sge-dump-job-status.sh @@ -0,0 +1,43 @@ +#! /bin/bash +# +# 20151030 +# Dumps job status (including pertinent SGE states) + +#$ -v MODULESHOME + +cat_indented() { cat "$1" | sed -e 's/^/ /'; } + +#if + +QSTAT=/cm/shared/apps/sge/2011.11p1/bin/linux-x64/qstat +#set -x + +date +pwd +hostname -f +uname -a +free +lscpu +#lsb_release -a + +echo +export + +ls -la $SGE_JOB_SPOOL_DIR + +echo "Contents of PE_HOSTFILE=$PE_HOSTFLE" +cat_indented "$PE_HOSTFILE" +#cat $SGE_JOB_SPOOL_DIR/pe_hostfile +#head -n 50 $SGE_JOB_SPOOL_DIR/* + +echo +echo "Original script:" +cat_indented "$JOB_SCRIPT" + +echo +echo "Job status:" +$QSTAT -j "$JOB_ID" | cat_indented - + +echo +echo "qstat -f output:" +$QSTAT -f