1. 23 Dec, 2015 1 commit
  2. 22 Dec, 2015 1 commit
  3. 21 Dec, 2015 4 commits
  4. 19 Dec, 2015 2 commits
    • John Hensley's avatar
      Let sbatch process long lines. · 0db71fe4
      John Hensley authored
      Remove the 1024-character limit on lines in batch scripts, which was
      causing long lines to be silently truncated. I noticed it when jobs were
      getting created with fewer dependencies than specified.
      
      Also increase the line length when showing job info.
      0db71fe4
    • jette's avatar
      Fix typo in comment · 5fedcd65
      jette authored
      No change in logic
      5fedcd65
  5. 18 Dec, 2015 4 commits
    • jette's avatar
      sched/backill start time correction · e0ee1b78
      jette authored
      sched/backfill: If a job can not be started within the configured
          backfill_window, set it's start time to 0 (unknown) rather than the end
          of the backfill_window.
      bug 2100
      e0ee1b78
    • 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
  6. 17 Dec, 2015 5 commits
  7. 16 Dec, 2015 8 commits
  8. 15 Dec, 2015 9 commits
  9. 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
  10. 11 Dec, 2015 3 commits
    • Tim Wickberg's avatar
      trivial changes to backfill scheduler · 4139d7f7
      Tim Wickberg authored
      No changes to logic
      4139d7f7
    • Morris Jette's avatar
      Fix some tests for my current configuration · 8c30126a
      Morris Jette authored
      8c30126a
    • Tim Wickberg's avatar
      Rework messages when falling back to older directory format for job environment · 6d9a752c
      Tim Wickberg authored
      Previously an error() would be logged when the attempt to open the job
      script using the new directory format failed but the successive fallback to the
      old directory structure was successful, leading to confusion when troubleshooting.
      
      Move emitted warnings to debug(), and only error() after failing to open in both
      directory structures. Add a note about backwards compatibility to both functions -
      we cannot remove these fallbacks as directory structure for pending jobs does not
      change on Slurm version update, and people may need to chain multiple version
      update together to get to a current slurm version which would correctly update
      slurmctld state files but leave pending jobs in the old directory structure.
      
      Bug #2244.
      6d9a752c