IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39930


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

Change with MRTCB=1 and OFFSITE=0 in the requirements. This will speed up shuffle, as it skips the slow ATRC copy. Add ipp118-ipp122 as valid MRTCB nodes to prevent errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/rawcheck.pl

    r39905 r39930  
    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    if ($i == 6) { next; } # This isn't "offsite", it's with the rest of the maui cluster.
Note: See TracChangeset for help on using the changeset viewer.