Custom Query (101 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (61 - 63 of 101)

Ticket Resolution Summary Owner Reporter
#165 fixed offline/down nodes not marked in cluster image ramonb ramonb
Description

seems a old bug has resurfaced: down/offline nodes are no longer (correctly) reported

#279 fixed patch for SLURM usage somebody mrobbert@…
Description
related to recent changes in the pyslurm library that jobmond.py uses to interface with Slurm. It was recently re-worked to bring it up to date with the most recent Slurm API and along the way the seem to have changed some of their data structures. Below is a patch I used to get it to run at our site. I hope this helps.

--- jobmond/jobmond.py  2014-01-20 09:24:08.000000000 -0700
+++ /usr/local/sbin/jobmond.py  2014-12-16 17:22:00.501223234 -0700
@@ -1306,7 +1306,7 @@

        for node, attrs in slurm_nodes.items():

-            ( num_state, name_state ) = attrs['node_state']
+            name_state = attrs['node_state']

            if name_state == 'DOWN':

@@ -1371,7 +1371,7 @@
            else:
                ppn = min_cpus

-            ( something, status_long ) = self.getAttr( attrs, 'job_state' )
+            status_long = self.getAttr( attrs, 'job_state' )

            status = 'Q'

Thanks,
Mike Robbert
HPC Engineer
Colorado School of Mines
#68 fixed [PATCH] Reduce the php notices a little ramonb felix@…
Description

Running jobmonarch gave me hundreds of warnings like:

[Wed Nov 05 20:58:56 2008] [error] [client 10.10.8.99] PHP Notice:  Use of undefined constant VAL - assumed 'VAL' in /var/www/html/ganglia/addons/job_monarch/overview.php on line 294

This is fixed with attached patch.

Note: See TracQuery for help on using queries.