Thursday Exercise 3.2: Using StashCache for Large Shared Data

This exercise will use a BLAST workflow to demonstrate the functionality of StashCache for transferring input files to jobs on OSG.

Because our individual blast jobs from Exercise 3.1 would take a bit longer with a larger database (too long for an workable exercise), we'll imagine for this exercise that our pdbaa_files.tar.gz file is too large for a web proxy (larger than ~1 GB). For this exercise, we will use the input from Exercise 3.1, but instead of using the web proxy for the pdbaa database, we will place it in StashCache via the OSG Connect server.

StashCache is a distributed set of caches spread across the U.S. They are connected with high bandwidth connections to each other, and to the data origin servers, where your data is originally placed.

StashCache Map

We will be using the command stashcp to copy files from Stash to the execute hosts. It has a cp like syntax.

Setup

Place the Database in StashCache

Copy to your public space on OSG Connect

StashCache provides a public space for you to store data which can be accessed through the caching servers. First, you need to move your blast database into this public directory. If you remember the "public" directory in your home directory on the OSG Connect server training.osgconnect.net, it's this location where you will place files that need to end up in the StashCache data origin.

You have already placed files in the ~/stash/public directory in the previous exercise in order for it to be accessible to the HTTP proxies. The same directory is accessible to StashCache.

As the public directory name indicates *your files placed in the public directory will be accessible to anyone's jobs if they know how to use stashcp, though no one else will be able to edit the files, since only you can place or change files in your public space. For your own work in the future, make sure that you never put any sensitive data in such locations.

Check the file on OSG Connect

Next, you can check for the file and test the command that we'll use in jobs on the OSG Connect login node:

user@training $ ls ~/stash/public

Now, load the stashcp module, which will allow you to test a copy of the file from StashCache into your home directory on login.osgconnect.net:

user@training $ module load stashcp
user@training $ module load xrootd
user@training $ stashcp /user/username/public/pdbaa_files.tar.gz ./

You should now see the pdbaa_files.tar.gz file in your current directory. Notice that we had to include the /user and username in the file path for stashcp, which make sure you're copying from your public space.

Modify the Submit File and Wrapper

You will have to modify the wrapper and submit files to use StashCache:

  1. At the top of the wrapper script (after #!/bin/bash), add the lines that load the stashcp module and to copy the pdbaa_files.tar.gz file into the current directory of the job:

    module load xrootd
    module load stashcp
    stashcp /user/<USERNAME>/public/pdbaa_files.tar.gz ./
    
  2. Since HTCondor will no longer transfer or download the file for you, make sure to add the following line (or modify your existing rm command, if you're confident) to make sure the pdbaa_files.tar.gz file is also deleted and not copied back as perceived output.

    rm pdbaa_files.tar.gz
    
  3. Delete the wget line from the job wrapper script blast_wrapper.sh

  4. Add the following line to the submit file and update the "requirements" statement to require servers with OSG Connect modules (for accessing the stashcp module), somewhere before the word queue.

    +WantsStashCache = true
    requirements = (OSGVO_OS_STRING == "RHEL 6") && (OpSys == "LINUX") && (HAS_MODULES =?= true)
    

    OSGVO_OS_STRING

    The OSGVO_OS_STRING is necessary because the OSG is transitioning to a mixed usage two operating systems, RHEL6 and RHEL7. The stashcp and xrootd modules are not available yet on RHEL7.

  5. Confirm that your queue statement is correct for the current directory. It should be something like:

    queue inputfile matching mouse_rna.fa.*
    

And that mouse_rna.fa.* files exist in the current directory (you should have copied them from the previous exercise directory).

Submit the Job

Now submit and monitor the job! If your 100 jobs from the previous exercise haven't started running yet, this job will not yet start. However, after it has been running for ~2 minutes, you're safe to continue to the next exercise!

Note: Keeping StashCache 'Clean'

Just as for data on a web proxy, it is VERY important to remove old files from StashCache when you no longer need them, especially so that you'll have plenty of space for such files in the future. For example, you would delete (rm) files from public on training.osgconnect.net when you don't need them there anymore, but only after all jobs have finished. The next time you use StashCache after the school, remember to first check for old files that you can delete.