thiell

Results 121 comments of thiell

Unfortunately, it is due to a limitation of ConfigParser. https://stackoverflow.com/questions/17947319/python-configparser-with-colon-in-the-key https://bugs.python.org/issue16374 Instead of trying to hack this, I think we need to get rid of configparser and switch to a...

A possible workaround (for now) is to define groups in the **default** group source that can be used as key (with NO ":") in topology.conf, something like that in the...

A workaround is to quote the dict key, like `"111":`. We will need a fix though as the behavior is not consistent in my example above, and this can be...

cufflinks should get `mkpath` fixed (particularly this: https://github.com/cole-trapnell-lab/cufflinks/blob/master/src/common.cpp#L283-L289) and call `stat()` because POSIX doesn't dictate that `EEXIST` should be returned first by `mkdir` in case of multiple errors, like `EPERM`...

@jrdemasi yes.. it is related to this issue, but what I say is that it is first a cufflinks bug and not a lustre bug, as it is POSIX (weird)...

``` $ time (cluset -e x[2000-2073]c[0-7]s[0-7]b[0-1] | python3 -m cProfile -s cumulative lib/ClusterShell/CLI/Nodeset.py -f) x[2000-2073]c[0-7]s[0-7]b[0-1] 4773441 function calls (4276373 primitive calls) in 5.067 seconds Ordered by: cumulative time ncalls tottime...

Thanks for the report @mattaezell. A quick look (on the master branch) shows that most of the time is spent in `RangeSetND._fold_multivariate_merge()` which does the nD folding: ``` $ cluset...

With clustershell 1.9, you should be able to use the new sshpass clush mode (provided as an example) to use password based authentication: ``` # enable sshpass mode cp /etc/clustershell/clush.conf.d/sshpass.conf.example...

fixed in https://github.com/cea-hpc/clustershell/commit/5a41bc09f70309600c1a407d2bb3dd08f5d1ba65

10-year anniversary gift ;) With clustershell 1.9, you will be able to enable the new sshpass clush mode to support password-based authentication: ``` # enable sshpass mode cp /etc/clustershell/clush.conf.d/sshpass.conf.example /etc/clustershell/clush.conf.d/sshpass.conf...