1. 18 Dec, 2015 3 commits
    • Danny Auble's avatar
      New tag header for 15.08.7 in NEWS · 62fa9336
      Danny Auble authored
      62fa9336
    • Danny Auble's avatar
      Tag for 15.08.6 · be17f3a7
      Danny Auble authored
      be17f3a7
    • jette's avatar
      squeue to list multiple reasons for job array · 0133f20e
      jette authored
      If a pending job array has multiple reasons for being in a pending state,
          then print all reasons in a comma separated list.
      
      Before:
                   JOBID PARTITION     NAME     USER ST       TIME  NODES NODELIST(REASON)
             97354_[1-4]     debug      tmp    jette PD       0:00      1 (Resources)
      
      After:
                   JOBID PARTITION     NAME     USER ST       TIME  NODES NODELIST(REASON)
             97354_[1-4]     debug      tmp    jette PD       0:00      1 (Resources,JobHeldUser)
      0133f20e
  2. 17 Dec, 2015 5 commits
  3. 16 Dec, 2015 8 commits
  4. 15 Dec, 2015 9 commits
  5. 14 Dec, 2015 3 commits
    • Morris Jette's avatar
      Decrease scancel parallelism · 53c0078c
      Morris Jette authored
      Decrease parallelism in job cancel request to prevent denial of service
          when cancelling huge numbers of jobs.
      bug 2256
      53c0078c
    • Morris Jette's avatar
      Prevent gang scheduling with preemption configured · 44f491b8
      Morris Jette authored
      Prevent triggering gang scheduling within a partition if configured with
          PreemptType=partition_prio and PreemptMode=suspend,gang.
      The essence of this fix is to change a "<=" to "<" in cons_res/job_test.c:
      -               if ((p_ptr->part_ptr->priority <= jp_ptr->part_ptr->priority) &&
      +               if ((p_ptr->part_ptr->priority < jp_ptr->part_ptr->priority) &&
      but logic was also added to insure that a partition configuration with
      PreemptMode did not override PreemptType != partition_prio.
      bug 2232
      44f491b8
    • David Bigagli's avatar
      Update the slurm.conf man page. · 71c4429a
      David Bigagli authored
      71c4429a
  6. 11 Dec, 2015 8 commits
  7. 10 Dec, 2015 4 commits