source: trunk/oarutils/oar-parexec @ 120

Last change on this file since 120 was 120, checked in by g7moreau, 8 years ago
  • First implementation of fonctional return status code
File size: 20.5 KB
Line 
1#!/usr/bin/perl
2#
3# 2011/11/27 Gabriel Moreau
4
5use strict;
6
7use Getopt::Long();
8use Pod::Usage;
9use Coro;
10use Coro::Semaphore;
11use Coro::Signal;
12use Coro::Channel;
13use Coro::Handle;
14use IO::File;
15use POSIX qw( WNOHANG WEXITSTATUS );
16use Cwd qw( getcwd );
17
18my $file;
19my $dir;
20my $cmd;
21my $logtrace;
22my $verbose;
23my $job_np         = 1;
24my $nodefile       = $ENV{OAR_NODE_FILE} || '';
25my $masterio;
26my $switchio;
27my $help;
28my $oarsh          = 'oarsh -q -T';
29my $sig_transmit;
30my $sig_checkpoint = 'USR2';
31my $job_launch_brake = 1; # one second time brake
32
33Getopt::Long::GetOptions(
34   'file=s'     => \$file,
35   'dir=s'      => \$dir,
36   'cmd=s'      => \$cmd,
37   'logtrace=s' => \$logtrace,
38   'verbose'    => \$verbose,
39   'help'       => \$help,
40   'oarsh=s'    => \$oarsh,
41   'jobnp=i'    => \$job_np,
42   'nodefile=s' => \$nodefile,
43   'masterio=s' => \$masterio,
44   'switchio'   => \$switchio,
45   'transmit'   => \$sig_transmit,
46   'kill=s'     => \$sig_checkpoint,
47   ) || pod2usage(-verbose => 0);
48pod2usage(-verbose => 2) if $help;
49pod2usage(-verbose => 2) if not (
50 (-e "$file")
51 or (-d "$dir" and $cmd ne '')
52 );
53
54my $oar_version = `oarsub -V | awk '{print \$4}'`;
55chomp $oar_version;
56
57# re-run, keep trace of job already done
58my %state;
59my $log_h = IO::File->new();
60if (-e "$logtrace") {
61   $log_h->open("< $logtrace")
62      or die "error: can't read log file: $!";
63   while (<$log_h>) {
64      $state{$1} = 'start' if m/^start\s+job\s+([^\s]+)\s/;
65      $state{$1} = 'end'   if m/^end\s+job\s+([^\s]+)\s/;
66      }
67   $log_h->close();
68   }
69if ($logtrace) {
70   $log_h->open(">> $logtrace")
71      or die "error: can't append log file $logtrace: $!";
72   $log_h->autoflush;
73   $log_h = unblock $log_h;
74   }
75
76# job to run
77my @job = ();
78if (-e "$file") {
79   my $job_num = 0;
80   open(JOB_LIST, '<', "$file") or die "error: can't open job file $file: $!";
81   while (my $job_cmd = <JOB_LIST>) {
82      chomp $job_cmd;
83      next if $job_cmd =~ m/^#/;
84      next if $job_cmd =~ m/^\s*$/;
85      $job_num++;
86      my ($job_name) = $job_cmd =~ m/#.*?\bname=(\S+?)\b/i;
87      $job_name ||= $job_num;
88      push @job, {
89         name   => $job_name,
90         cmd    => "$job_cmd",
91         num    => $job_num,
92         };
93      }
94   close JOB_LIST;
95   }
96else {
97   my $job_num = 0;
98   opendir(DIR, $dir) or die "error: can't open folder $dir: $!";
99   while (my $item = readdir(DIR)) {
100      next if $item =~ m/^\./;
101      next if $item =~ m/:/;
102      next if $item =~ m/\.old$/;
103      next if $item =~ m/\.sav$/;
104      next if $item =~ m/\.bak$/;
105      next if $item =~ m/\.no$/;
106      next unless (-d "$dir/$item");
107      $job_num++;
108      push @job, {
109         name   => $item,
110         cmd    => "cd $dir/$item/; $cmd",
111         num    => $job_num,
112         };
113      }
114   closedir DIR;
115   }
116
117# assume unique job name
118{
119   my %seen = ();
120   my $count_unique_name = grep { ! $seen{ $_->{name} }++ } @job;
121   if ($count_unique_name != $#job) {
122      $_->{name} = $_->{num} for @job;
123      }
124   }
125
126# ressources available
127my @ressources = ();
128open(NODE_FILE, '<', "$nodefile")
129   or die "can't open $nodefile: $!";
130while (<NODE_FILE>) {
131   chomp;
132   next if m/^#/;
133   next if m/^\s*$/;
134   push @ressources, $_;
135   }
136close NODE_FILE;
137
138my $ressource_size = scalar(@ressources);
139die "error: not enought ressources jobnp $job_np > ressources $ressource_size"
140   if $job_np > $ressource_size;
141
142my $current_dir = getcwd();
143
144my $stderr = $ENV{OAR_STDERR} || '';
145$stderr =~ s/\.stderr$//;
146$stderr = $masterio if $masterio;
147my $stdout = $ENV{OAR_STDOUT} || '';
148$stdout =~ s/\.stdout$//;
149$stdout = $masterio if $masterio;
150
151my $finished = new Coro::Signal;
152my $job_todo = new Coro::Semaphore 0;
153my $job_name_maxlen;
154for (@job) {
155   $job_todo->up;
156   $job_name_maxlen = length($_->{name}) if length($_->{name}) > $job_name_maxlen;
157   }
158
159# slice of ressources for parallel job
160my $ressources = new Coro::Channel;
161for my $slot (1 .. int($ressource_size / $job_np)) {
162   $ressources->put(
163      join(',',
164         @ressources[ (($slot - 1) * $job_np) .. (($slot * $job_np) - 1) ])
165         );
166   }
167
168my %scheduled = ();
169
170# OAR checkpoint and default signal SIGUSR2
171my $oar_checkpoint = new Coro::Semaphore 0;
172my $notify         = new Coro::Signal;
173$SIG{$sig_checkpoint} = sub {
174   print "warning: receive checkpoint at "
175      . time
176      . ", no new job, just finishing running job\n"
177      if $verbose;
178   $oar_checkpoint->up();
179   $notify->send if $sig_transmit;
180   };
181
182# asynchrone notify job
183async {
184   while () {
185      $notify->wait;
186
187      for my $job_pid (keys %scheduled) {
188         my $job_name     = $scheduled{$job_pid}->{name};
189         my $job_pidfile  = $scheduled{$job_pid}->{pidfile};
190         my $node_connect = $scheduled{$job_pid}->{node_connect};
191
192         my $fh = IO::File->new();
193         $fh->open("| $oarsh $node_connect >/dev/null 2>&1")
194            or die "error: can't notify subjob: $!";
195
196         $fh->autoflush;
197         $fh = unblock $fh;
198
199         $fh->print("kill -$sig_checkpoint \$(cat $job_pidfile)\n");
200         $fh->print("exit\n");
201
202         print "warning: transmit signal $sig_checkpoint"
203            . " to job $job_name on node $node_connect.\n"
204            if $verbose;
205
206         close $fh;
207         cede;
208         }
209      }
210   }
211
212# asynchrone start job block
213async {
214   my $timer;
215   JOB:
216   for my $job (@job) {
217      my $job_name   = $job->{name};
218      my $job_cmd    = $job->{cmd};
219
220      # job has been already run ?
221      if (exists $state{$job_name}) {
222         if ($state{$job_name} eq 'start') {
223            print "warning: job $job_name was not clearly finished, relaunching...\n"
224               if $verbose;
225            }
226         elsif ($state{$job_name} eq 'end') {
227            delete $state{$job_name}; # free memory
228            $job_todo->down;
229            print "warning: job $job_name already run\n" if $verbose;
230            cede;
231            next JOB;
232            }
233         }
234
235      # wait to not re-launch oarstat to fast
236      # equivalent to sleep $job_launch_brake
237      $timer = AE::now + $job_launch_brake;
238      while ( AE::now < $timer ) {
239         # force update of AE time
240         AE::now_update;
241         cede;
242         }
243
244      # take job ressource
245      my $job_ressource = $ressources->get;
246
247      # no more launch job when OAR checkpointing
248      last JOB if $oar_checkpoint->count() > 0;
249
250      my ($node_connect) = split ',', $job_ressource;
251      my $fh = IO::File->new();
252      my $job_pid = $fh->open("| $oarsh $node_connect >/dev/null 2>&1")
253         or die "error: can't start subjob: $!";
254
255      $fh->autoflush;
256      $fh = unblock $fh;
257
258      my $msg = sprintf "start job %${job_name_maxlen}s / %5i at %s oar job %i on node %s\n",
259         $job_name, $job_pid, time, $ENV{OAR_JOB_ID}, $job_ressource;
260      $log_h->print($msg) if $logtrace;
261      print($msg) if $verbose;
262
263      my ($job_stdout, $job_stderr);
264      $job_stdout = ">  $stdout-$job_name.stdout" if $stdout ne '' and $switchio;
265      $job_stderr = "2> $stderr-$job_name.stderr" if $stderr ne '' and $switchio;
266
267      my $job_nodefile   = "/tmp/oar-parexec-$ENV{LOGNAME}-$ENV{OAR_JOB_ID}-$job_name";
268      my $job_pidfile    = "/tmp/oar-parexec-$ENV{LOGNAME}-$ENV{OAR_JOB_ID}-$job_name.pid";
269      my $job_statusfile = "/tmp/oar-parexec-$ENV{LOGNAME}-$ENV{OAR_JOB_ID}-$job_name.status";
270
271      $scheduled{$job_pid} = {
272         fh           => $fh,
273         node_connect => $node_connect,
274         ressource    => $job_ressource,
275         name         => $job_name,
276         pidfile      => $job_pidfile,
277         };
278
279      # set job environment, run it and clean
280      if ($job_np > 1) {
281         $fh->print("printf \""
282               . join('\n', split(',', $job_ressource,))
283               . "\" > $job_nodefile\n");
284         $fh->print("OAR_NODE_FILE=$job_nodefile\n");
285         $fh->print("OAR_NP=$job_np\n");
286         $fh->print("export OAR_NODE_FILE\n");
287         $fh->print("export OAR_NP\n");
288         $fh->print("unset OAR_MSG_NODEFILE\n");
289         }
290
291      $fh->print("cd $current_dir\n");
292
293      if ($sig_transmit) {
294         $fh->print("trap 'jobs -p|xargs -r ps -o pid --no-headers --ppid|xargs -r kill -$sig_checkpoint' $sig_checkpoint\n");
295         $fh->print("echo \$\$ > $job_pidfile\n");
296         }
297
298      $fh->print("echo 0 > $job_statusfile\n");
299      $fh->print("(\n");
300      $fh->print("$job_cmd\n");
301      $fh->print(") $job_stdout $job_stderr || echo \$? > $job_statusfile \&\n");
302      $fh->print("while [ \$(jobs -p | wc -l) -gt 0 ]\n");
303      $fh->print("do\n");
304      $fh->print("   wait\n");
305      $fh->print("done\n");
306
307      $fh->print("OAR_SUBJOB_RETCODE=\$(cat $job_statusfile)\n");
308      $fh->print("rm -f $job_statusfile\n");
309      $fh->print("rm -f $job_pidfile\n")  if $sig_transmit;
310      $fh->print("rm -f $job_nodefile\n") if $job_np > 1;
311      $fh->print("exit \$OAR_SUBJOB_RETCODE\n");
312      cede;
313      }
314   }
315
316# asynchrone end job block
317async {
318   while () {
319      for my $job_pid (keys %scheduled) {
320         # non blocking PID test
321         if (waitpid($job_pid, WNOHANG)) {
322            # get return status code
323            my $job_retcode0 = $? >> 8;
324            #print "ERREUR0 $job_pid $job_retcode0\n" if $job_retcode0;
325
326            my $msg = sprintf "end   job %${job_name_maxlen}s / %5i at %s oar job %i on node %s\n",
327               $scheduled{$job_pid}->{name},
328               $job_pid, time, $ENV{OAR_JOB_ID}, $scheduled{$job_pid}->{ressource};
329
330            # Job error
331            $msg =~ s/^end\s+job/error:$job_retcode0 job/
332               if $job_retcode0 > 0 and $job_retcode0 != 99;
333
334            # Job non finish, just suspend if received checkpoint signal
335            $msg =~ s/^end\s+job/suspend job/
336               if $sig_transmit and $oar_checkpoint->count() > 0;
337
338            $log_h->print($msg) if $logtrace;
339            print($msg) if $verbose;
340            close $scheduled{$job_pid}->{fh};
341            # leave ressources for another job
342            $ressources->put($scheduled{$job_pid}->{ressource});
343            $job_todo->down;
344            delete $scheduled{$job_pid};
345            }
346         cede;
347         }
348
349      # checkpointing ! just finishing running job and quit
350      $finished->send if $oar_checkpoint->count() > 0 and scalar(keys(%scheduled)) == 0;
351
352      $finished->send if $job_todo->count() == 0;
353      cede;
354      }
355   }
356
357cede;
358
359# all job have been done
360$finished->wait;
361
362# close log trace file
363$log_h->close() if $logtrace;
364
365exit 99 if (($oar_checkpoint->count() > 0) and ($oar_version !~ m/^2\.4/));
366
367
368__END__
369
370=head1 NAME
371
372oar-parexec - parallel execution of many small short or long job
373
374=head1 SYNOPSIS
375
376 oar-parexec --file filecommand \
377    [--logtrace tracefile] [--verbose] \
378    [--jobnp integer] [--nodefile filenode] [--oarsh sssh] \
379    [--switchio] [--masterio basefileio] \
380    [--kill signal] [--transmit]
381
382 oar-parexec --dir foldertoiterate --cmd commandtolaunch \
383    [--logtrace tracefile] [--verbose] \
384    [--jobnp integer] [--nodefile filenode] [--oarsh sssh] \
385    [--switchio] [--masterio basefileio] \
386    [--kill signal] [--transmit]
387
388 oar-parexec --help
389
390=head1 DESCRIPTION
391
392C<oar-parexec> can execute lot of small short or long job in parallel inside a cluster.
393Number of parallel job at one time cannot exceed the number of core define in the node file.
394C<oar-parexec> is easier to use inside an OAR job environment
395which define automatically these strategics parameters...
396However, it can be used outside OAR.
397
398Option C<--file> or C<--dir> and C<--cmd> are the only mandatory parameters.
399
400Small job will be launch in the same folder as the master job.
401Two environment variable are defined for each small job
402and only in case of parallel small job (option C<--jobnp> > 1).
403
404 OAR_NODE_FILE - file that list node for parallel computing
405 OAR_NP        - number of processor affected
406
407The file define by OAR_NODE_FILE is created  in /tmp
408on the node before launching the small job
409and this file will be delete after job complete.
410C<oar-parexec> is a simple script,
411OAR_NODE_FILE will not be deleted in case of crash of the master job.
412
413OAR define other variable that are equivalent to OAR_NODE_FILE:
414OAR_NODEFILE, OAR_FILE_NODES, OAR_RESOURCE_FILE...
415You can use in your script the OAR original file ressources
416by using these variable if you need it.
417
418When use with long job,
419activate option C<--tranmit> to send OAR checkpoint signal
420and suspend small job before the walltime cut!
421
422=head1 OPTIONS
423
424=over 12
425
426=item B<-f|--file filecommand>
427
428File name which content job list.
429For the JOB_NAME definition,
430the first valid job in the list will have the number 1 and so on...
431
432It's possible to fix the name inside a comment on the job line.
433For example:
434
435 $HOME/test/subjob1.sh # name=subjob1
436
437The key C<name> is case insensitive,
438the associated value cannot have a space...
439
440The command can be any shell command.
441It's possible to change folder,
442or launch an asynchrone job in parallel,
443but one command must block and not be launch in asynchrone (with & or coproc).
444Example :
445
446 cd ./test; ./subjob1.sh
447 cd ./test; nice -18 du -sk ./ & ./subjob1.sh
448
449Commands C<du -sk ./>  and C<./subjob1.sh> will be done in parallel on the same ressource...
450It's better if C<du -sk ./> is faster than C<./subjob1.sh> !
451Do not abuse of that!
452
453=item B<-d|--dir foldertoiterate>
454
455Command C<--cmd> will be launch in all sub-folder of this master folder.
456Files in this folder will be ignored.
457Sub-folder name which begin with F<.>
458or finish with F<.old>, F<.sav>, F<.bak>, F<.no> will either be ignored...
459
460The JOB_NAME is simply the Sub-folder name.
461
462=item B<-c|--cmd commandtolaunch>
463
464Command (and argument to it) that will be launch in all sub-folder
465parameter folfer C<--dir>.
466Like for option C<--file>, command can be any valid shell command
467but one must block.
468
469=item B<-l|--logtrace tracefile>
470
471File which log and trace running job.
472In case of running the same master command (after crash for example),
473only job that are not mark as done will be run again.
474Be careful, job mark as running (start but not finish) will be run again.
475Tracing is base on the JOB_NAME between multiple run.
476
477This option is very usefull in case of crash
478but also for checkpointing and idempotent OAR job.
479
480=item B<-v|--verbose>
481
482=item B<-j|--jobnp integer>
483
484Number of processor to allocated for each small job.
4851 by default.
486
487=item B<-n|--nodefile filenode>
488
489File name that list all the node where job could be launch.
490By defaut, it's define automatically by OAR via
491environment variable C<OAR_NODE_FILE>.
492
493For example, if you want to use 6 core on your cluster node,
494you need to put 6 times the hostname node in this file,
495one per line...
496It's a very common file in MPI process !
497
498=item B<-o|-oarsh command>
499
500Command use to launch a shell on a node.
501By default
502
503 oarsh -q -T
504
505Change it to C<ssh> if you are not using an OAR cluster...
506
507=item B<-s|--switchio>
508
509Each small job will have it's own output STDOUT and STDERR
510base on master OAR job with C<JOB_NAME> inside
511(or base on C<basefileio> if option C<masterio>).
512Example :
513
514 OAR.151524.stdout -> OAR.151524-JOB_NAME.stdout
515
516where 151524 here is the master C<OAR_JOB_ID>
517and C<JOB_NAME> is the small job name.
518
519=item B<-m|--masterio basefileio>
520
521The C<basefileio> will be use in place of environment variable
522C<OAR_STDOUT> and C<OAR_STDERR> (without extension) to build the base name of the small job standart output
523(only use when option C<switchio> is activated).
524
525=item B<-k|--kill signal>
526
527Signal to listen and make a clean stop of the current C<oar-parexec> process.
528By default, use USR2 signal (see C<kill -l> for a list of possible signal).
529
530=item B<-t|--transmit>
531
532Resend catch signal to sub-job when receiving it.
533By default, no signal is transmis to child process.
534
535It's only valuable if use for long sub-job than can
536in return make themselves a clean restart.
537
538
539=item B<-h|--help>
540
541=back
542
543
544=head1 EXAMPLE
545
546=head2 Simple list of sequential job
547
548Content for the job file command (option C<--file>) could have:
549
550 - empty line
551 - comment line begin with #
552 - valid shell command (can containt comment)
553
554Example where F<$HOME/test/subjob1.sh> is a shell script (executable).
555
556 $HOME/test/subjob01.sh  # name=subjob01
557 $HOME/test/subjob02.sh  # name=subjob02
558 $HOME/test/subjob03.sh  # name=subjob03
559 $HOME/test/subjob04.sh  # name=subjob04
560 ...
561 $HOME/test/subjob38.sh  # name=subjob38
562 $HOME/test/subjob39.sh  # name=subjob39
563 $HOME/test/subjob40.sh  # name=subjob40
564
565These jobs could be launch by:
566
567 oarsub -n test -l /core=6,walltime=04:00:00 \
568   "oar-parexec -f ./subjob.list.txt"
569
570=head2 Folder job
571
572In a folder F<subjob.d>, create sub-folder with your data inside : F<test1>, <test2>...
573The same command will be executed in every sub-folder.
574C<oar-parexec> change the current directory to the sub-folder before launching it.
575
576A very simple job could be:
577
578 oarsub -n test -l /core=6,walltime=04:00:00 \
579   "oar-parexec -d ./subjob.d -c 'sleep 10; env'"
580
581The command C<env> will be excuted in all folder F<test1>, F<test2>... after a 10s pause.
582
583Sometime, it's simpler to use file list command,
584sometime, jobs by folder with the same command run is more relevant.
585
586=head2 Parallel job
587
588You need to put the number of core each small job need with option C<--jobnp>.
589If your job is build on OpenMP or MPI,
590you can use OAR_NP and OAR_NODE_FILE variables to configure them.
591On OAR cluster, you need to use C<oarsh> or a wrapper like C<oar-envsh>
592for connexion between node instead of C<ssh>.
593
594Example with parallel small job on 2 core:
595
596 oarsub -n test -l /core=6,walltime=04:00:00 \
597   "oar-parexec -j 2 -f ./subjob.list.txt"
598
599=head2 Tracing and master crash
600
601If the master node crash after hours of calculus, everything is lost ?
602No, with option C<--logtrace>,
603it's possible to remember older result
604and not re-run these job the second and next time.
605
606 oarsub -n test -l /core=6,walltime=04:00:00 \
607   "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
608
609After a crash or an C<oardel> command,
610you can then re-run the same command that will end to execute the jobs in the list
611
612 oarsub -n test -l /core=6,walltime=04:00:00 \
613   "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
614
615C<logtrace> file are just plain file.
616We use the extension '.log' because these files are automatically
617eliminate from our backup system!
618
619=head2 Checkpointing and Idempotent
620
621C<oar-parexec> is compatible with the OAR checkpointing.
622If you have 2000 small jobs that need 55h to be done on 6 cores,
623you can cut this in small parts.
624
625For this example, we suppose that each small job need about 10min...
626So, we send a checkpoint 12min before the end of the process
627to let C<oar-parexec> finish the jobs started.
628After being checkpointed, C<oar-parexec> do not start any new small job.
629
630 oarsub -t idempotent -n test \
631   -l /core=6,walltime=04:00:00 \
632   --checkpoint 720 \
633   "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
634
635After 3h48min, the OAR job will begin to stop launching new small job.
636When all running small job are finished, it's exit.
637But as the OAR job is type C<idempotent>,
638OAR will re-submit it as long as all small job are not executed...
639
640This way, we let other users a chance to use the cluster!
641
642In this last exemple, we use moldable OAR job with idempotent
643to reserve many core for a small time or a few cores for a long time:
644
645 oarsub -t idempotent -n test \
646   -l /core=50,walltime=01:05:00 \
647   -l /core=6,walltime=04:00:00 \
648   --checkpoint 720 \
649   "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
650
651=head2 Signal, recurse and long job
652
653By default, OAR use signal USR2 for checkpointing.
654It's possible to change this with option C<--kill>.
655
656When use with long small job, checkpointing could be too long...
657More than walltime!
658The option C<--transmit> could be use to checkpoint small job!
659These long small job will then stop cleanly and will be restarted next time.
660
661In the C<logtrace> file, small job will have the status suspend.
662They will be launch with the same command line at the next OAR run.
663
664Example: if you have 50 small jobs that each need 72h to be done on 1 cores,
665you can cut this in 24h parts.
666
667For this example, we suppose that each long job loop need about 20min...
668So, we send a checkpoint 30min before the end of the process
669to let C<oar-parexec> suspend the jobs started.
670After being checkpointed, C<oar-parexec> do not start any new small job.
671
672 oarsub -t idempotent -n test \
673   -l /core=6,walltime=24:00:00 \
674   --checkpoint 1800 \
675   --transmit \
676   "oar-parexec -f ./subjob.list.txt -l ./subjob.list.log"
677
678After 23h30min, the OAR job will begin to stop launching new small job.
679When all running small job are suspend, it's exit.
680But as the OAR job is type C<idempotent>,
681OAR will re-submit it as long as all small job are not finished...
682
683=head1 SEE ALSO
684
685oar-dispatch, mpilauncher,
686orsh, oar-envsh, ssh
687
688
689=head1 AUTHORS
690
691Written by Gabriel Moreau, Grenoble - France
692
693
694=head1 LICENSE AND COPYRIGHT
695
696GPL version 2 or later and Perl equivalent
697
698Copyright (C) 2011-2015 Gabriel Moreau / LEGI - CNRS UMR 5519 - France
699
Note: See TracBrowser for help on using the repository browser.