IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39931


Ignore:
Timestamp:
Jan 10, 2017, 12:44:04 PM (10 years ago)
Author:
watersc1
Message:

Merge from trunk of rawcheck.pl. Add S3 nodes, allow shuffle to skip OFFSITE if MRTCB and ITC have copies.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-20150312/ippScripts/scripts/rawcheck.pl

    r39912 r39931  
    7373## how many copies we want at each site.
    7474my %requirement_map = ();
     75# CZW: 2017-01-10: I've changed this to MRTCB=1, OFFSITE=0, from MRTCB=0, OFFSITE=1 to attempt to speed
     76#                  up the shuffle (which is OFFSITE limited).  Setting MRTCB=1 to ensure two copies in
     77#                  in the system (not totally necessary for everything, but a precaution in case this
     78#                  is run in cull mode without an edit back).
    7579$requirement_map{ITC} = 1;
    76 $requirement_map{OFFSITE} = 1;
    77 $requirement_map{MRTCB} = 0;
     80$requirement_map{OFFSITE} = 0;
     81$requirement_map{MRTCB} = 1;
    7882
    7983## Second, construct a list of volumes, mapped to their site location, using the
     
    105109    $volume_map{$vol} = 'ITC';
    106110}   
     111for ($i = 118; $i <= 122; $i++) {
     112    my $vol = sprintf("ipp%03d.0",$i);
     113    $volume_map{$vol} = 'MRTCB';
     114    $vol = sprintf("ipp%03d.1",$i);
     115    $volume_map{$vol} = 'MRTCB';
     116}
     117
     118
    107119for ($i = 0; $i <= 15; $i++) {
    108120    my $loc = 'OFFSITE';
Note: See TracChangeset for help on using the changeset viewer.