Changeset 17
- Timestamp:
- Feb 17, 2016, 2:53:58 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cleanup.php
r16 r17 344 344 $noiseIDs = array(); 345 345 $modelGUIDs = array(); 346 $mrecsIDs = array(); 347 $fns_used = array(); 346 348 347 349 foreach ( $files as $file ) … … 362 364 if ( preg_match( "/mdl.tmp$/", $fn ) ) 363 365 continue; 366 367 if ( in_array( $fn, $fns_used ) ) 368 continue; 369 370 $fns_used[] = $fn; 364 371 365 372 if ( filesize( $fn ) < 100 ) -
trunk/cluster_status.php
r15 r17 165 165 global $data; 166 166 167 //$clusters = array( "alamo", "lonestar", "stampede", "comet", "gordon" ); 168 $clusters = array( "alamo", "lonestar", "stampede", "comet", "gordon", "jureca" ); 167 // $clusters = array( "alamo", "lonestar", "lonestar5", "stampede", 168 // "comet", "gordon" ); 169 $clusters = array( "alamo", "lonestar", "lonestar5", "stampede", 170 "comet", "gordon", "jureca", "jacinto" ); 169 171 foreach ( $clusters as $clname ) 170 172 { … … 186 188 break; 187 189 } 190 case 'jacinto': 191 { 192 $host = "us3@jacinto.uthscsa.edu"; 193 $qstat = `ssh $host '/opt/torque/bin/qstat -B 2>&1|tail -1'`; 194 $sparts = preg_split( '/\s+/', $qstat ); 195 $que = $sparts[ 3 ]; 196 $run = $sparts[ 4 ]; 197 $sta = $sparts[ 9 ]; 198 if ( $sta == "Active" ) 199 $sta = "up"; 200 else 201 $sta = "down"; 202 break; 203 } 188 204 case 'stampede': 189 205 { … … 219 235 break; 220 236 } 237 case 'lonestar5': 238 { 239 $host = "us3@ls5.tacc.utexas.edu"; 240 $qstat = `ssh $host '/usr/local/bin/showq 2>&1|tail -1'`; 241 $sparts = preg_split( '/\s+/', $qstat ); 242 $tot = $sparts[ 2 ]; 243 $run = '0'; 244 $que = '0'; 245 $sta = "up"; 246 if ( $tot == '' || $tot == '0' ) 247 { 248 $sta = "down"; 249 } 250 else 251 { 252 $run = $sparts[ 5 ]; 253 $que = $sparts[ 8 ]; 254 } 255 break; 256 } 221 257 case 'comet': 222 258 { … … 250 286 { 251 287 $host = "swus1@jureca.fz-juelich.de"; 252 $qstat = `ssh $host ' /usr/bin/sinfo -s -p batch -o "%a %F" 2>&1|tail -1'`;288 $qstat = `ssh $host '~swus1/scripts/qstat-jureca 2>&1'`; 253 289 $sparts = preg_split( '/\s+/', $qstat ); 254 290 $sta = $sparts[ 0 ]; 255 $knts = $sparts[ 1 ]; 256 $sparts = preg_split( '/\//', $knts ); 257 $run = $sparts[ 0 ]; 258 $que = $sparts[ 1 ]; 291 $run = $sparts[ 1 ]; 292 $que = $sparts[ 2 ]; 259 293 break; 260 294 } 261 295 } 296 297 if ( $sta == "" ) 298 $sta = "down"; 262 299 263 300 if ( $sta == "down" ) … … 274 311 $data[] = $a; 275 312 276 if ( $clname == 'alamo' )313 if ( $clname == 'alamo' || $clname == 'jacinto' ) 277 314 { 278 315 $a[ 'cluster' ] = $clname . "-local"; -
trunk/gridctl.php
r15 r17 83 83 $status_in = $status; 84 84 $status_gw = $status; 85 $status_ex = $status; 85 86 86 87 // If entry is for Airvata/Thrift, get the true current status … … 169 170 case "FINISHED": 170 171 case "DONE": 171 // if ( is_aira_job( $gfacID ) ) 172 // { 173 // complete(); 174 // } 172 if ( is_aira_job( $gfacID ) ) 173 { 174 $status_ex = getExperimentStatus( $gfacID ); 175 write_log( "$loghdr status=$status status_ex=$status_ex" ); 176 if ( $status_ex === 'COMPLETED' ) 177 complete(); 178 } 175 179 case "PROCESSING": 176 180 default: … … 679 683 { 680 684 $status_ex = getExperimentStatus( $gfacID ); 685 686 if ( $status_ex == 'EXECUTING' ) 687 { 688 if ( $gfac_status == 'SUBMITTED' ) 689 $status_ex = 'QUEUED'; 690 if ( $gfac_status == 'RUNNING' ) 691 $status_ex = 'ACTIVE'; 692 } 693 681 694 $gfac_status = standard_status( $status_ex ); 682 695 write_log( "$loghdr get_gfac_status: status_ex=$status_ex gfac_status=$gfac_status" );
Note:
See TracChangeset
for help on using the changeset viewer.