GlideinWMS The Glidein-based Workflow Management System

Search Results

Glidein Frontend

Submitting jobs

Jump to:
  1. Overview

Submitting jobs

In order to run a job, you will need to source the condor.sh for your submit node (the userschedd) and run:
condor_submit job_file.job
This job file will have the attributes to run your job on the user pool.
# requirements is an expression to specify machines that can run jobs
# You should have Arch be at least "INTEL" and "X86_64"
# as most machines in the grid are 64-bit.
requirements = (Memory >= 1 && OpSys == "LINUX" ) && (Arch == "INTEL" || Arch == "X86_64")
#universe should generally be vanilla
universe = vanilla
# Specify voms proxy here
x509userproxy=/tmp/x509up_u507

#Specify the executable file and any arguments
executable = /home/dstrain/osg-tutorial/myjob.sh
arguments = 70

notification = Error

#Specify files to place the stdin, stdout stderr, and logs to.
input =
output = /home/dstrain/osg-tutorial/output/test_job.output.$(Process)
error = /home/dstrain/osg-tutorial/output/test_job.error.$(Process)
log = /home/dstrain/osg-tutorial/output/test_job.log.$(Process)
# Specify whether condor should transfer files back to the submit node
should_transfer_files = YES
when_to_transfer_output = ON_EXIT

#How many copies should be started and submitted.
queue 1
Please see the "Submitting a job" section in the condor manual for more information.