justIN           Dashboard       Workflows       Jobs       AWT       Sites       Storages       Docs       Login

Workflow 1912, Stage 1

Priority50
Processors1
Wall seconds43200
RSS bytes4194304000 (4000 MiB)
Max distance for inputs30.0
Enabled input RSEs
Enabled output RSEs
Enabled sites
Scopeusertests
Events for this stage

Output patterns

 DestinationPatternLifetimeFor next stage
0https://fndcadoor.fnal.gov:2880/dune/scratch/users/imawby/ccnuselection_nu/01912/1*ccnutree*.root

Environment variables

NameValue
INPUT_TAR_DIR_LOCAL/cvmfs/fifeuser1.opensciencegrid.org/sw/dune/edabd093eb3780b96f5e01d46b769fb473f9bd02
NUM_EVENTS100

File states

Total filesFindingUnallocatedAllocatedOutputtingProcessedNot foundFailed
500000049910

Job states

TotalSubmittedStartedProcessingOutputtingFinishedNotusedAbortedStalledJobscript errorOutputting failedNone processed
849000073500114000
Files processed002020404060608080100100120120140140160160180180200200Apr-23 12:00Apr-23 15:00Apr-23 18:00Apr-23 21:00Apr-24 00:00Apr-24 03:00Apr-24 06:00Apr-24 09:00Apr-24 12:00Apr-24 15:00Apr-24 18:00Apr-24 21:00Apr-25 00:00Apr-25 03:00Apr-25 06:00Apr-25 09:00Apr-25 12:00Files processedBin start timesNumber per binUK_LancasterUS_FNAL-T1US_ColoradoUK_BrunelCERNUS_UCSDNL_NIKHEFUK_QMULUK_SheffieldUS_FNAL-FermiG…US_FNAL-FermiGridUS_UChicagoES_PICCZ_FZUCA_VictoriaFR_CCIN2P3UK_ImperialIT_CNAFNL_SURFsaraUS_PuertoRico
Replicas per RSE499490.02445704883445244.1543468368661499269.9798865283378245.536945843606732379.3086970851893134.4771717993035Replicas per RSEDUNE_US_FNAL_DISK_STAGE (49%)DUNE_ES_PIC (49%)DUNE_US_BNL_SDCC (0%)

RSEs used

NameInputsOutputs
DUNE_ES_PIC4330
DUNE_US_FNAL_DISK_STAGE1670

Stats of processed input files as CSV or JSON, and of uploaded output files as CSV or JSON (up to 10000 files included)

File reset events, by site

SiteAllocatedOutputting
UK_Manchester510
NL_NIKHEF150
UK_Liverpool100
ES_PIC70
US_UCSD60
UK_Oxford40
UK_Sheffield20
UK_Brunel20
NL_SURFsara10
UK_QMUL10
CERN10
CA_SFU10

Jobscript

#!/bin/bash

# FCL file and DUNE software version/qualifier to be used
FCL_FILE=${FCL_FILE:-$INPUT_TAR_DIR_LOCAL/runCCNuSelection_enhanced.fcl}
DUNE_VERSION=${DUNE_VERSION:-v09_79_00d02}
DUNE_QUALIFIER=${DUNE_QUALIFIER:-e26:prof}

# setup the DUNE environment
source /cvmfs/dune.opensciencegrid.org/products/dune/setup_dune.sh
source $INPUT_TAR_DIR_LOCAL/setup-grid
setup dunesw "$DUNE_VERSION" -q "$DUNE_QUALIFIER"
mrbslp

export FW_SEARCH_PATH=.:${INPUT_TAR_DIR_LOCAL}:$FW_SEARCH_PATH
export FHICL_FILE_PATH=.:${INPUT_TAR_DIR_LOCAL}:$FHICL_FILE_PATH

# number of events to process from the input file
if [ "$NUM_EVENTS" != "" ] ; then
 events_option="-n $NUM_EVENTS"
fi

# First get an unprocessed file from this stage
did_pfn_rse=`$JUSTIN_PATH/justin-get-file`

if [ "$did_pfn_rse" = "" ] ; then
  echo "Nothing to process - exit jobscript"
  exit 0
fi

# Keep a record of all input DIDs, for pdjson2meta file -> DID mapping
echo "$did_pfn_rse" | cut -f1 -d' ' >>all-input-dids.txt

# pfn is also needed when creating justin-processed-pfns.txt
pfn=`echo $did_pfn_rse | cut -f2 -d' '`
echo "Input PFN = $pfn"

# Construct outFile from input $pfn 
now=$(date -u +"%Y-%m-%dT_%H%M%SZ")
Ffname=`echo $pfn | awk -F/ '{print $NF}'`
fname=`echo $Ffname | awk -F. '{print $1}'`

campaign="justIN.w${JUSTIN_WORKFLOW_ID}s${JUSTIN_STAGE_ID}"

# Here is where the LArSoft command is call it 
(
# Do the scary preload stuff in a subshell!
export LD_PRELOAD=${XROOTD_LIB}/libXrdPosixPreload.so

lar -c $FCL_FILE $events_option "$pfn" > ${fname}_reco_${now}.log 2>&1
)

echo '=== Start last 100 lines of lar log file ==='
tail -100 ${fname}_reco_${now}.log
echo '=== End last 100 lines of lar log file ==='

# Subshell exits with exit code of last command
larExit=$?
echo "lar exit code $larExit"

if [ $larExit -eq 0 ] ; then
  # Success !
  echo "$pfn" > justin-processed-pfns.txt
  jobscriptExit=0
else
  # Oh :(
  jobscriptExit=1
fi

# Create compressed tar file with all log files 
tar zcf `echo "$JUSTIN_JOBSUB_ID.logs.tgz" | sed 's/@/_/g'` *.log
exit $jobscriptExit

justIN time: 2024-11-17 05:56:55 UTC       justIN version: 01.01.09