This is an old revision of the document!
HomeDir & Storage Options
The HPCC cluster's file server sharptail.wesleyan.edu serves out all home directories to all nodes at location /home. It is 10 TB in size and it currently takes the nightly process of backup 1-2 hours to churn through. Making it larger would thus generate more traffic on /home. So we've, for now while it works for us, come up with this policy:
- All users are under quota which automatically is increased by 100 GB increments.
- When a user consumes 1024 GB (1 TB) the automatic increases stop.
- this home file system is twice a month backed up from sharptail's to greentail's disk array
- nightly snapshots (point in time backups) are done on sharptail's disk array and stored there too
At this point users need to off load static content to other locations. Contents like old analyses, results of published papers, etc. Users typically have one local option available:
- Keep contents out of /home and migrate it to /archives (7 TB, accessible on all “tail” nodes)
- request a directory for you in this file system and move contents to it
- this archive file system is twice a month backed up from sharptail's to greentail's disk array
- Users with home directories of 500+ GB in size should start considering moving data to /archives
Users whom are considered inactive have their home directories relocated to /archives/inactive
- these accounts are kept around until we do an account edit and purge (has never happened so far)
The remote storage option, if your storage needs cannot be supported by /archives, is off-cluster storage. Rstore is our latest storage solution for groups and labs with such needs.
- ask your lead faculty member if your lab/group has such an area or request one
- then move your static content permanently off the HPCC cluster environment
- details can be found at RSTORE FAQ
Moving Content
Our file server is named sharptail.wesleyan.edu (or sharptail when on cluster) and it is a 4U integrated storage and server module with an 48TB of disk array. Moving content can severely crippled this server. /home is served out by this server to all nodes and if the server can not handle all read/write requests everything comes to a halt. So when moving content please monitor and also observe if others are currently doing something along this line. Here are some tips.
Do not use any type of copy tool with a GUI or cp/scp or s/ftp. Especially the GUI (drag&drop) are Verboten! These tools are not smart enough and frequently generated blocked processes that halt everything. Use rsync in a linux/unix environment.
Check it out:
- is the server busy (
uptimeloads < 8 are ok) - is there memory available (
free -mlook at free values) - is anybody else using rsync (
ps -efl | greep rsync) - is the server busy writing (
iotoplook at the M/s disk writes(q to quit), values >100-200 M/s bad)
Three scenarios are depicted below. When crossing the vertical boundaries you are not dealing with local content anymore, thus the content needs to flow over the network. rsync has many features, one of the important one is the use of a remote shell.
| /home | group share | some lab location
some lab location | | |
<-----------> sharptail <-----------> Rstore <----------->
some other college | | |
| /archives | lab share | some other college
Some feature examples
- preserve permissions, do a checksum between source/destination files, observe what will happen
rsync -vac –dry-run
- delete files on destination not present on source (careful!)
rsync –delete
- throttle the rate of traffic generated, make your sysadmin happy, use
rsync –bwlimit=2500
- use a remote shell form host to host (crossing those vertical boundaries above)
rsync /home/my/stuff/ user@somehost.wesleyan.edu:/home/my/stuff/- Once contents have been migrated
rm -rf /home/my/stuff
Note the use of trailing slashes, it means update everything inside source stuff/ within target stuff/. If you left the slash off the above command it means put source directory stuff/ inside target directory stuff/ emaning you'll end up with target /home/my/stuff/stuff. You've been warned. USe the dry run option if unsure what will happen.
Examples
# copy from dir stuff lab or remote college to my home on HPCC in tmp area rsync -vac --bwlimit=2500 /home/user/stuff user@sharptail.wesleyan.edu:/home/user/tmp/ # sync my stuff folder into /archives inside our HPCC, then clean up rsync -vac --bwlimit=2500 /home/user/stuff/ /archives/user/stuff/ rm -rf /home/user/stuff/* # generate a copy of content on Rstore disk array outside of HPCC but within wesleyan.edu rsync -vac--bwlimit=2500 /home/user/stuff user@rstoresrv0.wesleyan.edu:/data/2/labcontent/projects/
