Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents

Configuration change log

New nodes jy01-03 added to the cluster. These nodes don't have NVMe /fscratch. To request node with /fscratch partition: bsub -n 1 -R fscratch ...

Slides from March 21 2019 User Group Juno_UG_032019_final.pptx

...

By default jobs submitted on juno only run on CentOS 7 nodes (with GPFS). Users can specify CentOS 6 nodes (Isilon only), CentOS 7 nodes (with GPFS), or either type. 

To submit a job to CentOS 7 nodes use either of these formats:

Code Block
languagebash
bsub -n 1 -W 1:00 -R "rusage[mem=2]"
bsub -n 1 -W 1:00 -app anyOS -R "select[type==CentOS7]" -R "rusage[mem=2]"

...

Code Block
languagebash
bsub -n 1 -W 1:00 -app anyOS -R "select[type==CentOS6]" -R "rusage[mem=2]"

...

Code Block
languagebash
bsub -n 1 -W 1:00 -app anyOS -R "rusage[mem=2]"



To submit a job to nodes with NVMe /fscratch:

...