OSG Exercise 1.1: Refresher — Submitting Multiple Jobs¶
The goal of this exercise is to map the physical locations of some worker servers in our local cluster. We will provide the executable and associated data, so your job will be to write a submit file that queues multiple jobs. Once complete, you will manually collate the results.
Where in the world are my jobs?¶
To find the physical location of the computers your jobs our running on, you will use a method called geolocation. Geolocation uses a registry to match a computer’s network address to an approximate latitude and longitude.
Geolocating several servers¶
Now, let’s try to remember some basic HTCondor ideas from the HTC exercises:
- Log in to
learn.chtc.wisc.edu
(yes, still at CHTC!) - Create and change into a new folder for this exercise, for example
osg-ex11
-
Download the geolocation code:
user@learn $ wget http://proxy.chtc.wisc.edu/SQUID/osgschool21/location-wrapper.sh \ http://proxy.chtc.wisc.edu/SQUID/osgschool21/wn-geoip.tar.gz
You will be using
location-wrapper.sh
as your executable andwn-geoip.tar.gz
as an input file. -
Create a submit file that queues fifty jobs that run
location-wrapper.sh
, transferswn-geoip.tar.gz
as an input file, and uses the$(Process)
macro to write differentoutput
anderror
files. Also, add the following requirement to the submit file (it’s not important to know what it does):requirements = (HAS_CVMFS_oasis_opensciencegrid_org == TRUE) && (IsOsgVoContainer =!= True)
Try to do this step without looking at materials from the earlier exercises. But if you are stuck, see HTC Exercise 2.2.
-
Submit your jobs and wait for the results
Collating your results¶
Now that you have your results, it’s time to summarize them.
Rather than inspecting each output file individually,
you can use the cat
command to print the results from all of your output files at once.
If all of your output files have the format location-#.out
(e.g., location-10.out
),
your command will look something like this:
user@learn $ cat location-*.out
The *
is a wildcard so the above cat command runs on all files that start with location-
and end in .out
.
Additionally, you can use cat
in combination with the sort
and uniq
commands using "pipes" (|
)
to print only the unique results:
user@learn $ cat location-*.out | sort | uniq
Mapping your results¶
To visualize the locations of the servers that your jobs ran on, you will be using http://www.mapcustomizer.com/. Copy and paste the collated results into the text box that pops up when clicking on the 'Bulk Entry' button on the right-hand side. Where did your jobs run?
Next exercise¶
Once completed, move onto the next exercise: Logging in to the OSG submit server