IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37783


Ignore:
Timestamp:
Jan 5, 2015, 1:51:43 PM (12 years ago)
Author:
watersc1
Message:

Change to how we choose the mu-fe host remotely. mu-fe4 has been down for many days, and this causes jobs to fail if we rely on the remote-side randomization. This change chooses a host for all remote actions that is used for all operations in the script.

Location:
tags/ipp-pv3-20140717/ippScripts/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-pv3-20140717/ippScripts/scripts/sc_remote_exec.pl

    r37393 r37783  
    1616# Hard coded values
    1717my $DMZ_HOST = 'wtrw';
    18 my $SEC_HOST = 'mu-fe';
     18my @SEC_HOSTS= ('mu-fe1','mu-fe2','mu-fe3'
     19                # ,'mu-fe4'
     20    );
     21my $SEC_HOST = $SEC_HOSTS[int(rand(@SEC_HOSTS))]; # 'mu-fe';
    1922my $IPP_PATH = '/turquoise/usr/projects/cosmo/mswarren/ipp/';
    2023my $remote_root  = '/scratch3/watersc1/';
  • tags/ipp-pv3-20140717/ippScripts/scripts/sc_remote_poll.pl

    r37782 r37783  
    2929# Hard coded values
    3030my $DMZ_HOST = 'wtrw';
    31 my $SEC_HOST = 'mu-fe';
     31my @SEC_HOSTS= ('mu-fe1','mu-fe2','mu-fe3'
     32                # ,'mu-fe4'
     33    );
     34my $SEC_HOST = $SEC_HOSTS[int(rand(@SEC_HOSTS))]; # 'mu-fe';
    3235my $IPP_PATH = '/turquoise/usr/projects/cosmo/mswarren/ipp/';
    3336my $remote_root  = '/scratch3/watersc1/';
Note: See TracChangeset for help on using the changeset viewer.