Changeset 28 for trunk/gridctl.php


Ignore:
Timestamp:
May 16, 2017, 8:55:58 PM (7 years ago)
Author:
gegorbet
Message:

fixes for alamo-local and airavata EXECUTING status

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gridctl.php

    r27 r28  
    6161         continue;
    6262      }
     63   }
     64
     65   else if ( $me_devel )
     66   {  // Local (us3iab/-local) and class_devel:  skip processing
     67      continue;
    6368   }
    6469
     
    533538      $query   = "UPDATE analysis SET status='RUNNING' WHERE gfacID='$gfacID'";
    534539      $message = "Job status request reports job is RUNNING";
     540      break;
     541
     542    case 'EXECUTING'      :
     543      $message = "Job status request reports job is EXECUTING";
    535544      break;
    536545
     
    825834
    826835   $cmd    = "/usr/bin/qstat -a $gfacID 2>&1|tail -n 1";
     836//write_log( "$self cmd: $cmd" );
     837//write_log( "$self cluster: $cluster" );
     838//write_log( "$self gfacID: $gfacID" );
    827839   if ( ! preg_match( "/us3iab/", $cluster ) )
    828840   {
    829841      $system = "$cluster.uthscsa.edu";
    830842      $system = preg_replace( "/\-local/", "", $system );
     843//write_log( "$self system: $system" );
    831844      $cmd    = "/usr/bin/ssh -x us3@$system " . $cmd;
     845//write_log( "$self  cmd: $cmd" );
    832846   }
    833847
    834848   $result = exec( $cmd );
     849//write_log( "$self  result: $result" );
    835850
    836851   if ( $result == ""  ||  preg_match( "/^qstat: Unknown/", $result ) )
    837852   {
    838853      write_log( "$self get_local_status: Local job $gfacID unknown" );
    839 write_log( "$self get_local_status: result=$result" );
     854//write_log( "$self get_local_status: result=$result" );
    840855      return 'UNKNOWN';
    841856   }
     
    852867
    853868      case "C" :                      // Job has completed
    854       case ""  :
    855869        $status = 'COMPLETED';
    856870        break;
     
    985999      case 'SCHEDULED' :
    9861000      case 'submitted' :
     1001      case 'SUBMITTED' :
    9871002      case '' :
    9881003         $status      = 'SUBMITTED';
     
    11011116      }
    11021117
     1118      else if ( $status_ex == 'EXECUTING' )
     1119      {
     1120         $status    = standard_status( $status_gw );
     1121write_log( "$loghdr status/_in/_gw/_ex=$status/$status_in/$status_gw/$status_ex" );
     1122      }
     1123
    11031124      else
    11041125      {  // Experiment not COMPLETED/FINISHED/DONE: use experiment status
Note: See TracChangeset for help on using the changeset viewer.