source: trunk/gridctl.php@ 41

Last change on this file since 41 was 41, checked in by gegorbet, 5 years ago

gridctl mods for uslims.uleth.ca demeler3 cluster

File size: 32.2 KB
Line 
1<?php
2
3$us3bin = exec( "ls -d ~us3/lims/bin" );
4include_once "$us3bin/listen-config.php";
5//include "$us3bin/cleanup_aira.php";
6//include "$us3bin/cleanup_gfac.php";
7//include "$us3bin/cleanup.php";
8
9
10// Global variables
11$gfac_message = "";
12$updateTime = 0;
13$submittime = 0;
14$cluster = '';
15
16//global $self;
17global $status_ex, $status_gw;
18
19// Produce some output temporarily, so cron will send me message
20$now = time();
21echo "Time started: " . date( 'Y-m-d H:i:s', $now ) . "\n";
22
23// Get data from global GFAC DB
24$gLink = mysqli_connect( $dbhost, $guser, $gpasswd, $gDB );
25
26if ( ! $gLink )
27{
28 write_log( "$self: Could not select DB $gDB - " . mysqli_error($gLink) );
29 //mail_to_admin( "fail", "Internal Error: Could not select DB $gDB" );
30 mail_to_admin( "fail",
31 "Internal Error: Could not select DB $gDB $dbhost $guser " );
32 //sleep(300);
33 sleep(3);
34 exit();
35}
36
37$query = "SELECT gfacID, us3_db, cluster, status, queue_msg, " .
38 "UNIX_TIMESTAMP(time), time from analysis";
39$result = mysqli_query( $gLink, $query );
40
41if ( ! $result )
42{
43 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
44 mail_to_admin( "fail", "Query failed $query\n" . mysqli_error( $gLink ) );
45 exit();
46}
47
48if ( mysqli_num_rows( $result ) == 0 )
49{
50//write_log( "$self: analysis read got numrows==0" );
51 exit(); // Nothing to do
52}
53//write_log( "$loghdr gfac-analysis rows $nrows" );
54
55$me_devel = preg_match( "/class_devel/", $class_dir );
56//echo "me_devel=$me_devel class_dir=$class_dir\n";
57
58while ( list( $gfacID, $us3_db, $cluster, $status, $queue_msg, $time, $updateTime )
59 = mysqli_fetch_array( $result ) )
60{
61 // If this entry does not match class/class_devel, skip processing
62//echo " gfacID=$gfacID gf_status=$status\n";
63
64 if ( preg_match( "/US3-A/i", $gfacID ) )
65 { // For thrift, job and gridctl must match
66 $job_devel = preg_match( "/US3-ADEV/i", $gfacID );
67//echo " THR: job_devel=$job_devel\n";
68 if ( ( $me_devel && !$job_devel ) ||
69 ( !$me_devel && $job_devel ) )
70 { // Job type and Airavata server mismatch: skip processing
71 continue;
72 }
73 }
74
75 else if ( $me_devel )
76 { // Local (us3iab/-local) and class_devel: skip processing
77//echo " LOC: me_devel=$me_devel\n";
78 continue;
79 }
80
81 // Checking we need to do for each entry
82echo "us3db=$us3_db gfid=$gfacID\n";
83//write_log( " us3db=$us3_db gfid=$gfacID" );
84 switch ( $us3_db )
85 {
86 case 'Xuslims3_cauma3' :
87 case 'Xuslims3_cauma3d' :
88 case 'Xuslims3_HHU' :
89 case 'Xuslims3_Uni_KN' :
90 $serviceURL = "http://gridfarm005.ucs.indiana.edu:9090/ogce-rest/job";
91 break;
92
93 default :
94// $serviceURL = "http://gridfarm005.ucs.indiana.edu:8080/ogce-rest/job";
95 break;
96 }
97
98// $awork = array();
99// $awork = explode( "-", $gfacID );
100// $gfacLabl = $awork[0] . "-" . $awork[1] . "-" . $awork[2];
101 $gfacLabl = $gfacID;
102 $loghdr = $self . ":" . $gfacLabl . "...:";
103 $status_ex = $status;
104
105 // If entry is for Airvata/Thrift, get the true current status
106
107 if ( is_aira_job( $gfacID ) )
108 {
109 $status_in = $status;
110//write_log( "$loghdr status_in=$status_in" );
111 $status = aira_status( $gfacID, $status_in );
112//echo "$loghdr status_in=$status_in status_ex=$status\n";
113if($status != $status_in )
114 write_log( "$loghdr Set to $status from $status_in" );
115//write_log( "$loghdr aira status=$status" );
116 }
117 else if ( is_gfac_job( $gfacID ) )
118 {
119 $status_gw = $status;
120 $status = get_gfac_status( $gfacID );
121 //if ( $status == 'FINISHED' )
122 if ( $status_gw == 'COMPLETE' )
123 $status = $status_gw;
124//echo "$loghdr status_gw=$status_gw status=$status\n";
125//write_log( "$loghdr non-AThrift status=$status status_gw=$status_gw" );
126 }
127 else
128 {
129//write_log( "$loghdr Local gfacID=$gfacID" );
130 $status_gw = $status;
131 $status = get_local_status( $gfacID );
132 if ( $status_gw == 'COMPLETE' || $status == 'UNKNOWN' )
133 $status = $status_gw;
134//echo "$loghdr status_lo=$status\n";
135//write_log( "$loghdr Local status=$status status_gw=$status_gw" );
136 }
137
138 // Sometimes during testing, the us3_db entry is not set
139 // If $status == 'ERROR' then the condition has been processed before
140 if ( strlen( $us3_db ) == 0 && $status != 'ERROR' )
141 {
142 write_log( "$loghdr GFAC DB is NULL - $gfacID" );
143 mail_to_admin( "fail", "GFAC DB is NULL\n$gfacID" );
144
145 $query2 = "UPDATE analysis SET status='ERROR' WHERE gfacID='$gfacID'";
146 $result2 = mysqli_query( $gLink, $query2 );
147 $status = 'ERROR';
148
149 if ( ! $result2 )
150 write_log( "$loghdr Query failed $query2 - " . mysqli_error( $gLink ) );
151
152 }
153
154//echo " st=$status\n";
155//write_log( "$loghdr switch status=$status" );
156 switch ( $status )
157 {
158 // Already been handled
159 // Later update this condition to search for gfacID?
160 case "ERROR":
161 cleanup();
162 break;
163
164 case "SUBMITTED":
165 submitted( $time );
166 break;
167
168 case "SUBMIT_TIMEOUT":
169 submit_timeout( $time );
170 break;
171
172 case "RUNNING":
173 case "STARTED":
174 case "STAGING":
175 case "ACTIVE":
176 running( $time );
177 break;
178
179 case "RUN_TIMEOUT":
180 run_timeout($time );
181 break;
182
183 case "DATA":
184 case "RESULTS_GEN":
185 wait_data( $time );
186 break;
187
188 case "DATA_TIMEOUT":
189 data_timeout( $time );
190 break;
191
192 case "COMPLETED":
193 case "COMPLETE":
194//write_log( "$loghdr COMPLETE gfacID=$gfacID" );
195 complete();
196 break;
197
198 case "CANCELLED":
199 case "CANCELED":
200 case "FAILED":
201 failed();
202 break;
203
204 case "FINISHED":
205 case "DONE":
206 if ( ! is_aira_job( $gfacID ) )
207 {
208 complete();
209 }
210write_log( "$loghdr FINISHED gfacID=$gfacID" );
211 case "PROCESSING":
212 default:
213 break;
214 }
215}
216mysqli_close( $gLink );
217
218exit();
219
220function submitted( $updatetime )
221{
222 global $self;
223 global $gLink;
224 global $gfacID;
225 global $loghdr;
226
227 $now = time();
228
229 if ( $updatetime + 600 > $now ) return; // < 10 minutes ago
230
231 if ( $updatetime + 86400 > $now ) // Within the first 24 hours
232 {
233 if ( ( $job_status = get_gfac_status( $gfacID ) ) === false )
234 $job_status = get_local_status( $gfacID );
235
236 if ( $job_status == 'GFAC_STATUS_UNAVAILABLE' )
237 return;
238
239 if ( ! in_array( $job_status, array( 'SUBMITTED', 'INITIALIZED', 'PENDING' ) ) )
240 {
241write_log( "$loghdr submitted:job_status=$job_status" );
242 update_job_status( $job_status, $gfacID );
243 }
244
245 return;
246 }
247
248 $message = "Job listed submitted longer than 24 hours";
249 write_log( "$self: $message - id: $gfacID" );
250 mail_to_admin( "hang", "$message - id: $gfacID" );
251 $query = "UPDATE analysis SET status='SUBMIT_TIMEOUT' WHERE gfacID='$gfacID'";
252 $result = mysqli_query( $gLink, $query );
253
254 if ( ! $result )
255 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
256
257 update_queue_messages( $message );
258 update_db( $message );
259}
260
261function submit_timeout( $updatetime )
262{
263 global $self;
264 global $gLink;
265 global $gfacID;
266 global $loghdr;
267
268 if ( ( $job_status = get_gfac_status( $gfacID ) ) === false )
269 $job_status = get_local_status( $gfacID );
270
271 if ( $job_status == 'GFAC_STATUS_UNAVAILABLE' )
272 return;
273
274 if ( ! in_array( $job_status, array( 'SUBMITTED', 'INITIALIZED', 'PENDING' ) ) )
275 {
276 update_job_status( $job_status, $gfacID );
277 return;
278 }
279
280 $now = time();
281
282 if ( $updatetime + 86400 > $now ) return; // < 24 hours ago ( 48 total submitted )
283
284 $message = "Job listed submitted longer than 48 hours";
285 write_log( "$self: $message - id: $gfacID" );
286 mail_to_admin( "hang", "$message - id: $gfacID" );
287 $query = "UPDATE analysis SET status='FAILED' WHERE gfacID='$gfacID'";
288 $result = mysqli_query( $gLink, $query );
289
290 if ( ! $result )
291 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
292
293 update_queue_messages( $message );
294 update_db( $message );
295}
296
297function running( $updatetime )
298{
299 global $self;
300 global $gLink;
301 global $gfacID;
302 global $loghdr;
303
304 $now = time();
305
306 get_us3_data();
307
308 if ( $updatetime + 600 > $now ) return; // message received < 10 minutes ago
309
310 if ( $updatetime + 86400 > $now ) // Within the first 24 hours
311 {
312 if ( ( $job_status = get_gfac_status( $gfacID ) ) === false )
313 $job_status = get_local_status( $gfacID );
314
315 if ( $job_status == 'GFAC_STATUS_UNAVAILABLE' )
316 return;
317
318 if ( ! in_array( $job_status, array( 'ACTIVE', 'RUNNING', 'STARTED' ) ) )
319 update_job_status( $job_status, $gfacID );
320
321 return;
322 }
323
324 $message = "Job listed running longer than 24 hours";
325 write_log( "$self: $message - id: $gfacID" );
326 mail_to_admin( "hang", "$message - id: $gfacID" );
327 $query = "UPDATE analysis SET status='RUN_TIMEOUT' WHERE gfacID='$gfacID'";
328 $result = mysqli_query( $gLink, $query );
329
330 if ( ! $result )
331 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
332
333 update_queue_messages( $message );
334 update_db( $message );
335}
336
337function run_timeout( $updatetime )
338{
339 global $self;
340 global $gLink;
341 global $gfacID;
342 global $loghdr;
343
344 if ( ( $job_status = get_gfac_status( $gfacID ) ) === false )
345 $job_status = get_local_status( $gfacID );
346
347 if ( $job_status == 'GFAC_STATUS_UNAVAILABLE' )
348 return;
349
350 if ( ! in_array( $job_status, array( 'ACTIVE', 'RUNNING', 'STARTED' ) ) )
351 {
352 update_job_status( $job_status, $gfacID );
353 return;
354 }
355
356 $now = time();
357
358 get_us3_data();
359
360 if ( $updatetime + 172800 > $now ) return; // < 48 hours ago
361
362 $message = "Job listed running longer than 48 hours";
363 write_log( "$self: $message - id: $gfacID" );
364 mail_to_admin( "hang", "$message - id: $gfacID" );
365 $query = "UPDATE analysis SET status='FAILED' WHERE gfacID='$gfacID'";
366 $result = mysqli_query( $gLink, $query );
367
368 if ( ! $result )
369 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
370
371 update_queue_messages( $message );
372 update_db( $message );
373}
374
375function wait_data( $updatetime )
376{
377 global $self;
378 global $gLink;
379 global $gfacID;
380 global $loghdr;
381
382 $now = time();
383
384 if ( $updatetime + 3600 > $now ) // < Within the first hour
385 {
386 if ( ( $job_status = get_gfac_status( $gfacID ) ) === false )
387 $job_status = get_local_status( $gfacID );
388
389 if ( $job_status == 'GFAC_STATUS_UNAVAILABLE' )
390 return;
391
392 if ( $job_status != 'DATA' )
393 {
394 update_job_status( $job_status, $gfacID );
395 return;
396 }
397
398 // Request to resend data, but only request every 5 minutes
399 $minute = date( 'i' ) * 1; // Makes it an int
400 if ( $minute % 5 ) return;
401
402 $output_status = get_gfac_outputs( $gfacID );
403
404 if ( $output_status !== false )
405 mail_to_admin( "debug", "wait_data/$gfacID/$output_status" );
406
407 return;
408 }
409
410 $message = "Waiting for data longer than 1 hour";
411 write_log( "$self: $message - id: $gfacID" );
412 mail_to_admin( "hang", "$message - id: $gfacID" );
413 $query = "UPDATE analysis SET status='DATA_TIMEOUT' WHERE gfacID='$gfacID'";
414 $result = mysqli_query( $gLink, $query );
415
416 if ( ! $result )
417 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
418
419 update_queue_messages( $message );
420 update_db( $message );
421}
422
423function data_timeout( $updatetime )
424{
425 global $self;
426 global $gLink;
427 global $gfacID;
428 global $loghdr;
429
430 if ( ( $job_status = get_gfac_status( $gfacID ) ) === false )
431 $job_status = get_local_status( $gfacID );
432
433 if ( $job_status == 'GFAC_STATUS_UNAVAILABLE' )
434 return;
435
436 if ( $job_status != 'DATA' )
437 {
438 update_job_status( $job_status, $gfacID );
439 return;
440 }
441
442 $now = time();
443
444 if ( $updatetime + 86400 > $now ) // < 24 hours ago
445 {
446 // Request to resend data, but only request every 15 minutes
447 $minute = date( 'i' ) * 1; // Makes it an int
448 if ( $minute % 15 ) return;
449
450 $output_status = get_gfac_outputs( $gfacID );
451
452 if ( $output_status !== false )
453 mail_to_admin( "debug", "data_timeout/$gfacID/$output_status" );
454
455 return;
456 }
457
458 $message = "Waiting for data longer than 24 hours";
459 write_log( "$self: $message - id: $gfacID" );
460 mail_to_admin( "hang", "$message - id: $gfacID" );
461 $query = "UPDATE analysis SET status='FAILED' WHERE gfacID='$gfacID'";
462 $result = mysqli_query( $gLink, $query );
463
464 if ( ! $result )
465 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
466
467 update_queue_messages( $message );
468 update_db( $message );
469}
470
471function complete()
472{
473 // Just cleanup
474 cleanup();
475}
476
477function failed()
478{
479 // Just cleanup
480 cleanup();
481}
482
483function cleanup()
484{
485 global $self;
486 global $gLink;
487 global $gfacID;
488 global $us3_db;
489 global $loghdr;
490 global $class_dir;
491
492 // Double check that the gfacID exists
493 $query = "SELECT count(*) FROM analysis WHERE gfacID='$gfacID'";
494 $result = mysqli_query( $gLink, $query );
495
496 if ( ! $result )
497 {
498 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
499 mail_to_admin( "fail", "Query failed $query\n" . mysqli_error( $gLink ) );
500 return;
501 }
502
503 list( $count ) = mysqli_fetch_array( $result );
504
505//if ($count==0)
506//write_log( "$loghdr count = $count gfacID = $gfacID" );
507 if ( $count == 0 ) return;
508
509 // Now check the us3 instance
510 $requestID = get_us3_data();
511//write_log( "$loghdr requestID = $requestID gfacID = $gfacID" );
512 if ( $requestID == 0 ) return;
513
514 $me_devel = preg_match( "/class_devel/", $class_dir );
515 $me_local = preg_match( "/class_local/", $class_dir );
516
517 if ( preg_match( "/US3-A/i", $gfacID ) )
518 { // Airavata job: clean up if prod/devel match
519 $job_devel = preg_match( "/US3-ADEV/i", $gfacID );
520 if ( ( !$me_devel && !$job_devel ) ||
521 ( $me_devel && $job_devel ) )
522 { // Job is of same type (prod/devel) as Server: process it
523//write_log( "$loghdr CALLING aira_cleanup()" );
524 aira_cleanup( $us3_db, $requestID, $gLink );
525 }
526//write_log( "$loghdr RTN FR aira_cleanup()" );
527 }
528 else
529 { // Non-airavata job: clean up in a non-aira way
530write_log( "$loghdr calling gfac_cleanup() reqID=$requestID" );
531 gfac_cleanup( $us3_db, $requestID, $gLink );
532 }
533}
534
535// Function to update status of job
536function update_job_status( $job_status, $gfacID )
537{
538 global $gLink;
539 global $query;
540 global $self;
541 global $loghdr;
542
543 switch ( $job_status )
544 {
545 case 'SUBMITTED' :
546 case 'SUBMITED' :
547 case 'INITIALIZED' :
548 case 'UPDATING' :
549 case 'PENDING' :
550 $query = "UPDATE analysis SET status='SUBMITTED' WHERE gfacID='$gfacID'";
551 $message = "Job status request reports job is SUBMITTED";
552 break;
553
554 case 'STARTED' :
555 case 'RUNNING' :
556 case 'ACTIVE' :
557 $query = "UPDATE analysis SET status='RUNNING' WHERE gfacID='$gfacID'";
558 $message = "Job status request reports job is RUNNING";
559 break;
560
561 case 'EXECUTING' :
562 $message = "Job status request reports job is EXECUTING";
563 break;
564
565 case 'FINISHED' :
566 $query = "UPDATE analysis SET status='FINISHED' WHERE gfacID='$gfacID'";
567 $message = "NONE";
568 break;
569
570 case 'DONE' :
571 $query = "UPDATE analysis SET status='DONE' WHERE gfacID='$gfacID'";
572 $message = "NONE";
573 break;
574
575 case 'COMPLETED' :
576 case 'COMPLETE' :
577 $query = "UPDATE analysis SET status='COMPLETE' WHERE gfacID='$gfacID'";
578 $message = "Job status request reports job is COMPLETED";
579 break;
580
581 case 'DATA' :
582 $query = "UPDATE analysis SET status='DATA' WHERE gfacID='$gfacID'";
583 $message = "Job status request reports job is COMPLETE, waiting for data";
584 break;
585
586 case 'CANCELED' :
587 case 'CANCELLED' :
588 $query = "UPDATE analysis SET status='CANCELED' WHERE gfacID='$gfacID'";
589 $message = "Job status request reports job is CANCELED";
590 break;
591
592 case 'FAILED' :
593 $query = "UPDATE analysis SET status='FAILED' WHERE gfacID='$gfacID'";
594 $message = "Job status request reports job is FAILED";
595 break;
596
597 case 'UNKNOWN' :
598write_log( "$loghdr job_status='UNKNOWN', reset to 'ERROR' " );
599 $query = "UPDATE analysis SET status='ERROR' WHERE gfacID='$gfacID'";
600 $message = "Job status request reports job is not in the queue";
601 break;
602
603 default :
604 // We shouldn't ever get here
605 $query = "UPDATE analysis SET status='ERROR' WHERE gfacID='$gfacID'";
606 $message = "Job status was not recognized - $job_status";
607 write_log( "$loghdr update_job_status: " .
608 "Job status was not recognized - $job_status\n" .
609 "gfacID = $gfacID\n" );
610 break;
611
612 }
613
614 $result = mysqli_query( $gLink, $query );
615 if ( ! $result )
616 write_log( "$loghdr Query failed $query - " . mysqli_error( $gLink ) );
617
618 if ( $message != 'NONE' )
619 {
620 update_queue_messages( $message );
621 update_db( $message );
622 }
623}
624
625function get_us3_data()
626{
627 global $self;
628 global $gfacID;
629 global $dbhost;
630 global $user;
631 global $passwd;
632 global $us3_db;
633 global $updateTime;
634 global $loghdr;
635
636 $us3_link = mysqli_connect( $dbhost, $user, $passwd, $us3_db );
637
638 if ( ! $us3_link )
639 {
640 write_log( "$loghdr could not connect: $dbhost, $user, $passwd, $us3_db" );
641 mail_to_admin( "fail", "Could not connect to $dbhost : $us3_db" );
642 return 0;
643 }
644
645 $query = "SELECT HPCAnalysisRequestID, UNIX_TIMESTAMP(updateTime) " .
646 "FROM HPCAnalysisResult WHERE gfacID='$gfacID'";
647 $result = mysqli_query( $us3_link, $query );
648
649 if ( ! $result )
650 {
651 write_log( "$self: Query failed $query - " . mysqli_error( $us3_link ) );
652 mail_to_admin( "fail", "Query failed $query\n" . mysqli_error( $us3_link ) );
653 return 0;
654 }
655
656 list( $requestID, $updateTime ) = mysqli_fetch_array( $result );
657 mysqli_close( $us3_link );
658
659 return $requestID;
660}
661
662// Function to determine if this is a gfac job or not
663function is_gfac_job( $gfacID )
664{
665 $hex = "[0-9a-fA-F]";
666 if ( ! preg_match( "/^US3-Experiment/i", $gfacID ) &&
667 ! preg_match( "/^US3-$hex{8}-$hex{4}-$hex{4}-$hex{4}-$hex{12}$/", $gfacID ) )
668 {
669 // Then it's not a GFAC job
670 return false;
671 }
672
673 return true;
674}
675
676// Function to determine if this is an airavata/thrift job or not
677function is_aira_job( $gfacID )
678{
679 global $cluster;
680
681 if ( preg_match( "/US3-A/i", $gfacID ) )
682 {
683 // Then it's an Airavata/Thrift job
684 return true;
685 }
686
687 return false;
688}
689
690// Function to get the current job status from GFAC
691function get_gfac_status( $gfacID )
692{
693 global $serviceURL;
694 global $self;
695 global $loghdr;
696 global $cluster;
697 global $status_ex, $status_gw;
698
699 if ( is_aira_job( $gfacID ) )
700 {
701 $status_ex = getExperimentStatus( $gfacID );
702
703 if ( $status_ex == 'EXECUTING' )
704 {
705 if ( $status_gw == 'RUNNING' )
706 $status_ex = 'ACTIVE';
707 else
708 $status_ex = 'QUEUED';
709 }
710
711 $gfac_status = standard_status( $status_ex );
712 return $gfac_status;
713 }
714
715 else if ( ! is_gfac_job( $gfacID ) )
716 {
717 return false;
718 }
719
720 $url = "$serviceURL/jobstatus/$gfacID";
721 try
722 {
723 $post = new HttpRequest( $url, HttpRequest::METH_GET );
724 $http = $post->send();
725 $xml = $post->getResponseBody();
726 }
727 catch ( HttpException $e )
728 {
729 write_log( "$loghdr Status not available - marking failed - $gfacID" );
730 return 'GFAC_STATUS_UNAVAILABLE';
731 }
732
733 // Parse the result
734 $gfac_status = parse_response( $xml );
735
736 // This may not seem like the best place to do this, but here we have
737 // the xml straight from GFAC
738 $status_types = array('SUBMITTED',
739 'SUBMITED',
740 'INITIALIZED',
741 'PENDING',
742 'RUNNING',
743 'ACTIVE',
744 'STARTED',
745 'COMPLETED',
746 'FINISHED',
747 'DONE',
748 'DATA',
749 'RESULTS_GEN',
750 'CANCELED',
751 'CANCELLED',
752 'FAILED',
753 'STAGING',
754 'UNKNOWN');
755 if ( ! in_array( $gfac_status, $status_types ) )
756 mail_to_admin( 'debug', "gfacID: /$gfacID/\n" .
757 "XML: /$xml/\n" .
758 "Status: /$gfac_status/\n" );
759
760 if ( in_array( $gfac_status, array( 'DONE', 'DATA', 'RESULTS_GEN' ) ) )
761 $gfac_status = 'DATA';
762
763 return $gfac_status;
764}
765
766// Function to request data outputs from GFAC
767function get_gfac_outputs( $gfacID )
768{
769 global $serviceURL;
770 global $self;
771
772 // Make sure it's a GFAC job and status is appropriate for this call
773 if ( ( $job_status = get_gfac_status( $gfacID ) ) === false )
774 {
775 // Then it's not a GFAC job
776 $job_status = get_local_status( $gfacID );
777 return $job_status;
778 }
779
780 if ( ! in_array( $job_status, array( 'DONE', 'FAILED', 'COMPLETE', 'FINISHED' ) ) )
781 {
782 // Then it's not appropriate to request data
783 return false;
784 }
785
786 $url = "$serviceURL/registeroutput/$gfacID";
787 try
788 {
789 $post = new HttpRequest( $url, HttpRequest::METH_GET );
790 $http = $post->send();
791 $xml = $post->getResponseBody();
792 }
793 catch ( HttpException $e )
794 {
795 write_log( "$self: Data not available - request failed - $gfacID" );
796 return false;
797 }
798
799 mail_to_admin( "debug", "get_gfac_outputs/\n$xml/" ); // Temporary, to see what the xml looks like,
800 // if we ever get one
801
802 // Parse the result
803 $gfac_status = parse_response( $xml );
804
805 return $gfac_status;
806}
807
808function parse_response( $xml )
809{
810 global $gfac_message;
811
812 $status = "";
813 $gfac_message = "";
814
815 $parser = new XMLReader();
816 $parser->xml( $xml );
817
818 while( $parser->read() )
819 {
820 $type = $parser->nodeType;
821
822 if ( $type == XMLReader::ELEMENT )
823 $name = $parser->name;
824
825 else if ( $type == XMLReader::TEXT )
826 {
827 if ( $name == "status" )
828 $status = $parser->value;
829 else
830 $gfac_message = $parser->value;
831 }
832 }
833
834 $parser->close();
835 return $status;
836}
837
838// Function to get status from local cluster
839function get_local_status( $gfacID )
840{
841 global $cluster;
842 global $self;
843
844 $is_jetstr = preg_match( "/jetstream/", $cluster );
845 $is_demeler3 = preg_match( "/demeler3/", $cluster );
846
847 if ( $is_jetstr )
848 $cmd = "squeue -j $gfacID 2>&1|tail -n 1";
849 else
850 $cmd = "/usr/bin/qstat -a $gfacID 2>&1|tail -n 1";
851//write_log( "$self cmd: $cmd" );
852//write_log( "$self cluster: $cluster" );
853//write_log( "$self gfacID: $gfacID" );
854
855 if ( ! preg_match( "/us3iab/", $cluster ) )
856 {
857 $system = "$cluster.uthscsa.edu";
858 if ( $is_jetstr )
859 $system = "$cluster";
860 $system = preg_replace( "/\-local/", "", $system );
861
862 if ( $is_demeler3 )
863 {
864 $system = "demeler3.uleth.ca";
865 }
866
867 $cmd = "/usr/bin/ssh -x us3@$system " . $cmd;
868//write_log( "$self cmd: $cmd" );
869 }
870
871 $result = exec( $cmd );
872//write_log( "$self result: $result" );
873
874 $secwait = 2;
875 $num_try = 0;
876 // Sleep and retry up to 3 times if ssh has "ssh_exchange_identification" error
877 while ( preg_match( "/ssh_exchange_id/", $result ) && $num_try < 3 )
878 {
879 sleep( $secwait );
880 $num_try++;
881 $secwait *= 2;
882write_log( "$me: num_try=$num_try secwait=$secwait" );
883 }
884
885 if ( preg_match( "/^qstat: Unknown/", $result ) ||
886 preg_match( "/ssh_exchange_id/", $result ) )
887 {
888 write_log( "$self get_local_status: Local job $gfacID unknown result=$result" );
889 return 'UNKNOWN';
890 }
891
892 $values = preg_split( "/\s+/", $result );
893 $jstat = ( $is_jetstr == 0 ) ? $values[ 9 ] : $values[ 5 ];
894//write_log( "$self: get_local_status: job status = /$jstat/");
895 switch ( $jstat )
896 {
897 case "W" : // Waiting for execution time to be reached
898 case "E" : // Job is exiting after having run
899 case "R" : // Still running
900 case "CG" : // Job is completing
901 $status = 'ACTIVE';
902 break;
903
904 case "C" : // Job has completed
905 case "ST" : // Job has disappeared
906 case "CD" : // Job has completed
907 $status = 'COMPLETED';
908 break;
909
910 case "T" : // Job is being moved
911 case "H" : // Held
912 case "Q" : // Queued
913 case "PD" : // Queued
914 case "CF" : // Queued
915 $status = 'SUBMITTED';
916 break;
917
918 case "CA" : // Job has been canceled
919 $status = 'CANCELED';
920 break;
921
922 case "F" : // Job has failed
923 case "BF" : // Job has failed
924 case "NF" : // Job has failed
925 case "TO" : // Job has timed out
926 case "" : // Job has disappeared
927 $status = 'FAILED';
928 break;
929
930 default :
931 $status = 'UNKNOWN'; // This should not occur
932 break;
933 }
934
935 return $status;
936}
937
938function update_queue_messages( $message )
939{
940 global $self;
941 global $gLink;
942 global $gfacID;
943
944 // Get analysis table ID
945 $query = "SELECT id FROM analysis " .
946 "WHERE gfacID = '$gfacID' ";
947 $result = mysqli_query( $gLink, $query );
948 if ( ! $result )
949 {
950 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
951 return;
952 }
953 list( $analysisID ) = mysqli_fetch_array( $result );
954
955 // Insert message into queue_message table
956 $query = "INSERT INTO queue_messages SET " .
957 "message = '" . mysqli_real_escape_string( $gLink, $message ) . "', " .
958 "analysisID = '$analysisID' ";
959 $result = mysqli_query( $gLink, $query );
960 if ( ! $result )
961 {
962 write_log( "$self: Query failed $query - " . mysqli_error( $gLink ) );
963 return;
964 }
965}
966
967function update_db( $message )
968{
969 global $self;
970 global $gfacID;
971 global $dbhost;
972 global $user;
973 global $passwd;
974 global $us3_db;
975
976 $us3_link = mysqli_connect( $dbhost, $user, $passwd, $us3_db );
977
978 if ( ! $us3_link )
979 {
980 write_log( "$self: could not connect: $dbhost, $user, $passwd" );
981 mail_to_admin( "fail", "Could not connect to $dbhost : $us3_db" );
982 return 0;
983 }
984
985 $query = "UPDATE HPCAnalysisResult SET " .
986 "lastMessage='" . mysqli_real_escape_string( $us3_link, $message ) . "'" .
987 "WHERE gfacID = '$gfacID' ";
988
989 mysqli_query( $us3_link, $query );
990 mysqli_close( $us3_link );
991}
992
993function mail_to_admin( $type, $msg )
994{
995 global $updateTime;
996 global $status;
997 global $cluster;
998 global $org_name;
999 global $admin_email;
1000 global $dbhost;
1001 global $requestID;
1002
1003 $headers = "From: $org_name Admin<$admin_email>" . "\n";
1004 $headers .= "Cc: $org_name Admin<$admin_email>" . "\n";
1005 $headers .= "Cc: $org_name Admin<alexsav.science@gmail.com>" . "\n";
1006 $headers .= "Bcc: Gary Gorbet<gegorbet@gmail.com>" . "\n"; // make sure
1007
1008
1009 // Set the reply address
1010 $headers .= "Reply-To: $org_name<$admin_email>" . "\n";
1011 $headers .= "Return-Path: $org_name<$admin_email>" . "\n";
1012
1013 // Try to avoid spam filters
1014 $now = time();
1015 $tnow = date( 'Y-m-d H:i:s' );
1016 $headers .= "Message-ID: <" . $now . "gridctl@$dbhost>$requestID\n";
1017 $headers .= "X-Mailer: PHP v" . phpversion() . "\n";
1018 $headers .= "MIME-Version: 1.0" . "\n";
1019 $headers .= "Content-Transfer-Encoding: 8bit" . "\n";
1020
1021 $subject = "US3 Error Notification";
1022 $message = "
1023 UltraScan job error notification from gridctl.php:
1024
1025 Update Time : $updateTime [ now=$tnow ]
1026 GFAC Status : $status
1027 Cluster : $cluster
1028 ";
1029
1030 $message .= "Error Message : $msg\n";
1031
1032 mail( $admin_email, $subject, $message, $headers );
1033}
1034
1035// Convert a status string to one of the standard DB status strings
1036function standard_status( $status_in )
1037{
1038 switch ( $status_in )
1039 { // Map variations to standard gateway status values
1040 case 'QUEUED' :
1041 case 'LAUNCHED' :
1042 case 'CREATED' :
1043 case 'VALIDATED' :
1044 case 'SCHEDULED' :
1045 case 'submitted' :
1046 case 'SUBMITTED' :
1047 case '' :
1048 $status = 'SUBMITTED';
1049 break;
1050
1051 case 'EXECUTING' :
1052 case 'ACTIVE' :
1053 case 'running' :
1054 case 'executing' :
1055 $status = 'RUNNING';
1056 break;
1057
1058 case 'PENDING' :
1059 case 'CANCELING' :
1060 $status = 'UPDATING';
1061 break;
1062
1063 case 'CANCELLED' :
1064 case 'canceled' :
1065 $status = 'CANCELED';
1066 break;
1067
1068// $status = 'DATA';
1069// break;
1070
1071 case 'COMPLETED' :
1072 case 'completed' :
1073 $status = 'COMPLETE';
1074 break;
1075
1076 case 'FAILED_DATA' :
1077 case 'SUBMIT_TIMEOUT' :
1078 case 'RUN_TIMEOUT' :
1079 case 'DATA_TIMEOUT' :
1080 $status = 'FAILED';
1081 break;
1082
1083 case 'COMPLETE' :
1084 $status = 'DONE';
1085 break;
1086
1087 case 'UNKNOWN' :
1088 $status = 'ERROR';
1089 break;
1090
1091 // Where already standard value, retain value
1092 case 'ERROR' :
1093 case 'RUNNING' :
1094 case 'SUBMITTED' :
1095 case 'UPDATING' :
1096 case 'CANCELED' :
1097 case 'DATA' :
1098 case 'FAILED' :
1099 case 'DONE' :
1100 case 'FINISHED' :
1101 default :
1102 $status = $status_in;
1103 break;
1104 }
1105
1106 return $status;
1107}
1108
1109function aira_status( $gfacID, $status_in )
1110{
1111 global $self;
1112 global $loghdr;
1113 global $class_dir;
1114//echo "a_st: st_in$status_in : $gfacID\n";
1115 //$status_gw = standard_status( $status_in );
1116 $status_gw = $status_in;
1117//echo "a_st: st_db=$status_gw\n";
1118 $status = $status_gw;
1119 $me_devel = preg_match( "/class_devel/", $class_dir );
1120 $job_devel = preg_match( "/US3-ADEV/i", $gfacID );
1121 $devmatch = ( ( !$me_devel && !$job_devel ) ||
1122 ( $me_devel && $job_devel ) );
1123
1124 if ( preg_match( "/US3-A/i", $gfacID ) && $devmatch )
1125 {
1126//write_log( "$loghdr status_in=$status_in status=$status gfacID=$gfacID" );
1127 $status_ex = getExperimentStatus( $gfacID );
1128//write_log( "$loghdr status_ex=$status_ex" );
1129
1130 if ( $status_ex == 'COMPLETED' )
1131 { // Experiment is COMPLETED: check for 'FINISHED' or 'DONE'
1132 if ( $status_gw == 'FINISHED' || $status_gw == 'DONE' )
1133 { // COMPLETED + FINISHED/DONE : gateway status is now COMPLETE
1134 $status = 'COMPLETE';
1135 }
1136
1137 else
1138 { // COMPLETED + NOT-FINISHED/DONE: gw status now DONE
1139 $status = 'DONE';
1140 }
1141 }
1142
1143 else if ( $status_gw == 'FINISHED' || $status_gw == 'DONE' )
1144 { // Gfac status == FINISHED/DONE: leave as is (unless FAILED)
1145 $status = $status_gw;
1146 if ( $status_ex == 'FAILED' )
1147 {
1148 sleep( 10 );
1149 $status_ex = getExperimentStatus( $gfacID );
1150 if ( $status_ex == 'FAILED' )
1151 {
1152 write_log( "$loghdr status still 'FAILED' after 10-second delay" );
1153 sleep( 10 );
1154 $status_ex = getExperimentStatus( $gfacID );
1155 if ( $status_ex == 'FAILED' )
1156 write_log( "$loghdr status still 'FAILED' after 20-second delay" );
1157 else
1158 write_log( "$loghdr status is $status_ex after 20-second delayed retry" );
1159 }
1160 write_log( "$loghdr status reset to 'COMPLETE'" );
1161 $status = 'COMPLETE';
1162 }
1163 }
1164
1165 else if ( $status_ex == 'EXECUTING' )
1166 {
1167 $status = standard_status( $status_gw );
1168write_log( "$loghdr status/_in/_gw/_ex=$status/$status_in/$status_gw/$status_ex" );
1169 }
1170
1171 else
1172 { // Experiment not COMPLETED/FINISHED/DONE: use experiment status
1173 $status = standard_status( $status_ex );
1174 }
1175
1176//if ( $status != 'SUBMITTED' )
1177//write_log( "$loghdr status/_in/_gw/_ex=$status/$status_in/$status_gw/$status_ex" );
1178 if ( $status != $status_gw )
1179 {
1180 update_job_status( $status, $gfacID );
1181 }
1182 }
1183
1184 return $status;
1185}
1186
1187?>
Note: See TracBrowser for help on using the repository browser.