Access control scripts (admission rules)

From Supercomputación y Cálculo Científico UIS
Revision as of 22:02, 11 October 2014 by Sgelvez (talk | contribs) (Created page with "Back to OAR These scripts must be entered in the sql table called "admission_rules": 1. Maximum walltime: passive 336 hours, interactive 12 hours. {{Note|<wiki>Este sir...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Back to OAR

These scripts must be entered in the sql table called "admission_rules":

1. Maximum walltime: passive 336 hours, interactive 12 hours.

NOTE: <wiki>Este sirve en oar 2.4</nowiki>


update admission_rules set rule=
'my $max_interactive_walltime = iolib::sql_to_duration("12:00:00")\;
# 14 days = 336 hours
my $max_batch_walltime = iolib::sql_to_duration("336:00:00")\;
foreach my $mold (@{$ref_resource_list}){
    if (defined($mold->[1])){
        if (($jobType eq "INTERACTIVE") and ($reservationField eq "None") and ($max_interactive_walltime < $mold->[1])){
            print("[ADMISSION RULE] Walltime too big for an INTERACTIVE job so it is set to $max_interactive_walltime.\n")\;
            $mold->[1] = $max_interactive_walltime\;
        }elsif ($max_batch_walltime < $mold->[1]){
            print("[ADMISSION RULE] Walltime too big for a BATCH job so it is set to $max_batch_walltime.\n")\;
            $mold->[1] = $max_batch_walltime\;
        }
    }
}' where id=11;
NOTE: Está toda la instrucción sql, para editar la regla 11, que la que tenía el límite para las interactivas. La regla original se presenta a continuación:


# Set the maximum walltime
my $max_walltime = iolib::sql_to_duration("12:00:00");
if (($jobType eq "INTERACTIVE") and ($reservationField eq "None")){ 
    foreach my $mold (@{$ref_resource_list}){
        if ((defined($mold->[1])) and ($max_walltime < $mold->[1])){
            print("[ADMISSION RULE] Walltime to big for an INTERACTIVE job so it is set to $max_walltime.\n");
            $mold->[1] = $max_walltime;
        }
    }
}

2. Limitar a que debe haber un nodo en interactivo a lo menos