[slurm-dev] Re: how to monitor CPU/RAM usage on each node of a slurm job? python API?

2016-09-19 Thread Torres, Giovanni
On 9/18/16, 8:41 PM, "Igor Yakushin" wrote: > > Hi All, > > > I'd like to be able to see for a given jobid how much resources are used by a > job on each node it is running on at this moment. Is there a way to do it? > > So far it looks like I have to script it: get the list of the involved

[slurm-dev] Re: how to monitor CPU/RAM usage on each node of a slurm job? python API?

2016-09-19 Thread Torres, Giovanni
On 9/19/16, 11:33 AM, "Igor Yakushin" wrote: > > Hi Giovanni, > We have just upgraded to 16.05.4. > When I try building pyslurm, it says that version 2.6 of Slurm is required. This thread should move to the PySlurm google group instead: https://groups.google.com/forum/#!forum/pyslurm. You can

[slurm-dev] RE: Cannot get SlurmDBD service running (missing mysql plugin)

2016-12-23 Thread Torres, Giovanni
Hi Will, Did you have the mariadb-devel package installed when you built the RPMs? - Giovanni From: Will Dennis [wden...@nec-labs.com] Sent: Friday, December 23, 2016 1:21 PM To: slurm-dev Subject: [slurm-dev] Cannot get SlurmDBD service running (missing

[slurm-dev] RE: Cannot get SlurmDBD service running (missing mysql plugin)

2016-12-23 Thread Torres, Giovanni
2016 1:43 PM To: slurm-dev Subject: [slurm-dev] RE: Cannot get SlurmDBD service running (missing mysql plugin) Just checked, and no... just "mariadb-libs" is installed on the build host... Install mariadb-devel & rebuild/repackage? -----Original Message- From: Torres, Giovanni [

[slurm-dev] RE: Linkin error in slurm c api

2016-12-27 Thread Torres, Giovanni
From: carlochess . [carloch...@gmail.com] Sent: Sunday, December 25, 2016 11:50 AM To: slurm-dev Subject: [slurm-dev] Linkin error in slurm c api Hi everyone, I'm trying to compile a very basic example of the api (main.c) #include "slurm/slurm.h" #include "slurm

[slurm-dev] Re: How to get pids of a job

2017-05-11 Thread Torres, Giovanni
Here’s one I wrote as well: https://github.com/giovtorres/slurmtools/tree/master/what-cpus It should run on the node and requires the psutil python module. It parses /proc to get a list of process and thread IDs. Giovanni On 5/11/17, 10:19 AM, "Ole Holm Nielsen" wrote: I have writ