Skip to content

0.30.7 #134

Merged
merged 2 commits into from
May 12, 2022
Merged

0.30.7 #134

merged 2 commits into from
May 12, 2022

Commits on May 12, 2022

  1. Configuration menu
    Copy the full SHA
    5c570dd View commit details
    Browse the repository at this point in the history
  2. mxqsub: Set default tmpdir size to 10 GiB

    Commit efe43f4 ("mxqsub: Default tmpdir to 100G") made --tmpdir=100
    the default.
    
    The 100G number was, of course, arbitrary, and seems to be a bit on the
    high side. Experience shows that the free disk space now is often the
    limiting factor which prevents servers from taking additional jobs.
    
    for h in $(hostconfig --list mxqd); do
      ssh $h  'd=$(($(stat -f -c%b /scratch/local2)*4/1024/1024));c=$(nproc); echo $d GB / $c cores= $(($d/$c)) $(hostname)'
    done | sort -k6n
    
    385 GB 64 cores = 6 simsalabimbambasaladusaladim.molgen.mpg.de
    465 GB 64 cores = 7 esodophobie.molgen.mpg.de
    915 GB 80 cores = 11 acedia.molgen.mpg.de
    915 GB 80 cores = 11 avaritia.molgen.mpg.de
    915 GB 80 cores = 11 fordprefect.molgen.mpg.de
    [...]
    7449 GB 64 cores = 116 peanutbutterjellytime.molgen.mpg.de
    14901 GB 64 cores = 232 crunchyfrog.molgen.mpg.de
    14901 GB 64 cores = 232 dirtyfork.molgen.mpg.de
    29804 GB 128 cores = 232 kronos.molgen.mpg.de
    
    Set the limit to 10G.
    donald committed May 12, 2022
    Configuration menu
    Copy the full SHA
    b0ce5b6 View commit details
    Browse the repository at this point in the history