1. 23 May, 2019 20 commits
  2. 22 May, 2019 5 commits
  3. 21 May, 2019 8 commits
  4. 17 May, 2019 2 commits
  5. 16 May, 2019 5 commits
    • Morris Jette's avatar
      Only allocate 1 CPU per node with the --overcommit option · dd7775ef
      Morris Jette authored
      Previous select/cons_tres logic would allocate one CPU per task on the node
      
      Bug 6981
      dd7775ef
    • Morris Jette's avatar
      modify task layout with --overcommit · 42d7e312
      Morris Jette authored
      Modify task layout with --overcommit option plus a heterogeneous job
          allocation so that a cyclic task distribution can start happening before
          all CPUs on all nodes are fully allocated. The number of tasks per node
          will be unchanged from the previous algorithm, but tasks will be distributed
          in a cyclic fashion first and then extra tasks placed on nodes with more
          CPUs. Previously all CPUs would be fully allocated in a cyclic fashion,
          then excess tasks distributed evenly across all allocated nodes.
      Bug 6981
      42d7e312
    • Dominik Bartkiewicz's avatar
      Store reservation flags in slurmdbd in a uint64_t. · 46d55dd4
      Dominik Bartkiewicz authored
      Add warning to slurm.h.in that no new reservation flags can be
      stored in slurmdbd in 19.05. (Although they could still be used by
      slurmctld without issue.)
      
      Note that the underlying RPC still uses uint32_t, but this will be
      changed before 20.02 on master, and changing the column to uint32_t
      in 19.05 just to change it again in 20.02 is best avoided.
      
      Bug 6969.
      46d55dd4
    • Nathan Rini's avatar
      Fix memory leaks due to incomplete slurmdb_cluster_cond_t destructor. · 2038469f
      Nathan Rini authored
      Free format_list, plugin_id_select_list, rpc_version_list in
       _free_cluster_cond_members().
      
      Bug 7020.
      2038469f
    • Marshall Garey's avatar
      Fix archive loading events. · 0d0f9deb
      Marshall Garey authored
      There was a syntax error in the mysql for inserting the event records
      into the event table caused by commit 3d61b6aa. The syntax error was
      a semicolon in the middle of the query, for example:
      
      insert into "voyager_event_table" (time_start, time_end, node_name,
      cluster_nodes, reason, reason_uid, state, tres) values ('1538669453',
      '1539298628', 'v1', '', 'cold-start', '1017', '0',
      '1=8,2=4000,5=8,1001=4,1002=1');, (<... another record>);, ...
      
      Bug 7025.
      0d0f9deb