Custom Query (101 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 101)

Ticket Resolution Summary Owner Reporter
#162 fixed SLURM support ramonb ramonb
Description

Would be nice to have SLURM support in jobmond

#67 fixed small patch to get lsf support working ramonb felix@…
Description

I had to patch jobmonarch as follows to get it to work with LSF (lava):

[root@master52 jobmonarch]# svn diff
Index: jobmond/jobmond.py
===================================================================
--- jobmond/jobmond.py  (revision 556)
+++ jobmond/jobmond.py  (working copy)
@@ -717,7 +717,14 @@

                 if my_val_str:

-                       my_val_str = my_val_str + ' ' + val_name + '=' + val_value
+                       if type(val_value) != list:
+
+                               my_val_str = my_val_str + ' ' + val_name + '=' + val_value
+
+                       else:
+
+                               my_val_str = my_val_str + ' ' + val_name + '= '
+
                 else:
                        my_val_str = val_name + '=' + val_value

@@ -1147,6 +1154,7 @@
                         if requested_cpus == None or requested_cpus == "":
                                 requested_cpus = 1

+               display_queue = 1
                if QUEUE:
                 for q in QUEUE:
                        if q == queue:

I am using ganglia 3.0.7 and Python 2.4.3

#19 fixed sort by hostnames in clusterimage bastiaans bastiaans
Description

long time wish to sort by (ganglia) location.

next best thing is by parsing the hostname for x, y values

Note: See TracQuery for help on using queries.