tazend
tazend
Hi, could you try out the slurm-20.11.8 branch? (https://github.com/PySlurm/pyslurm/tree/slurm-20.11.8) It is some commits ahead of the tag, perhaps this can do the trick. So you submitted the jobs from the...
Hi, yeah culprit is definitely `work_dir`, with `std_err` and `std_out` only being side-effects since the slurmctld puts the logs per default into the work-dir. The encoding step itself should be...
Mh weird, I can replicate the erroneous symbols if I don't supply a `work_dir`, however explicitly setting it works for me: ```python import pyslurm; psj = pyslurm.job() ; jid =...
Hi, yeah, due to no memory specification for the Job (MinMemoryNode=0), the current values that are checked in the `memory` property are all set to 0 (which means UNLIMITED/INFINITE in...
Hi you are probably seeing a similar issue as mentioned in #260 In newer versions of pyslurm (starting with 21.08), the Job-Submission API was substantially reworked (see the docs [here](https://pyslurm.github.io/23.2/reference/jobsubmitdescription/)),...
Hi, the `Jobs` class basically inherits from `dict`, and `Jobs.load()` returns a new instance of a `Jobs` collection that contains all the jobs in the system at the moment of...
Hi, working on the Cython project that sparked this issue and just wanted to give an update. Instead of the `embedSignature` functionality in Cython, we moved to the latest Cython...
Hi, I'm the colleague of @ostertagconrad yeah especially the PCI stuff took a long time. As @ostertagconrad said because our Servers have so many of them and it seems like...
Thanks @stmcginnis , this looks good. I will try it out with our servers some time this week.
Hi @stmcginnis I was now trying to test out your changes, but ran into some problems. The redfish-exporter uses the functions `PCIeDevices` and `PCIeFunctions` from [here](https://github.com/stmcginnis/gofish/blob/main/redfish/computersystem.go#L759) which contains seperate implementations...