- 10 Aug, 2018 6 commits
-
-
Brian Christiansen authored
-
Danny Auble authored
given a job_ptr. Bug 5494
-
Danny Auble authored
-
Brian Christiansen authored
to control whether the Slurmd will shutdown itself down or not when a reboot request is received. Continuation of 54197d9e Bug 5019
-
Tim Wickberg authored
-
Tim Wickberg authored
Update slurm.spec and slurm.spec-legacy as well.
-
- 09 Aug, 2018 3 commits
-
-
Brian Christiansen authored
Bug 5505
-
Tim Wickberg authored
Bug 5164. Without this patch the slurmctld would send a finishing message to srun which may already be torn down. This prevents printing a benign error message.
-
Alejandro Sanchez authored
Bug 3844.
-
- 08 Aug, 2018 10 commits
-
-
Marshall Garey authored
Bug 5526
-
Marshall Garey authored
Bug 5526
-
Marshall Garey authored
Bug 5171
-
Marshall Garey authored
so that the tests won't fail due to trying to set time limits greater than MaxTime. Bug 5171
-
Marshall Garey authored
Bug 5171
-
Marshall Garey authored
in order to be able to set a partition's MaxTime Bug 5171
-
Marshall Garey authored
To set a partition's MaxTime Bug 5171
-
Tim Wickberg authored
-
Marshall Garey authored
-
Brian Christiansen authored
With commit b1ff4342, the sacct -v line was changed from: sacct: Accounting storage SLURMDBD plugin loaded with AuthInfo=(null) to: sacct: Accounting storage SLURMDBD plugin loaded the test just needed to account for the difference.
-
- 07 Aug, 2018 17 commits
-
-
Brian Christiansen authored
-
Brian Christiansen authored
Continuation of a4a91719
-
Brian Christiansen authored
from_tres_rec was being added to dest_tres_list and being free'd twice when free'ing from_tres_list and dest_tres_list. Continuation of a4a91719
-
Alejandro Sanchez authored
Bug 5528.
-
Danny Auble authored
Bug 5260
-
Tim Wickberg authored
-
Morris Jette authored
Only split nodes here if a node_features plugin is in use. Otherwise node fragmentation will occur if the node config has CPUs specified but not CoresPerSocket and Sockets. This could be avoided by filling out the node definition, but adding this workaround for backwards compatiblity. Bug 5039.
-
Tim Wickberg authored
-
Marshall Garey authored
Task prologs could set or modify this, so wait to create the directory until after they've finished. Bug 5367.
-
Alejandro Sanchez authored
Bug 4373.
-
Alejandro Sanchez authored
Bug 4373.
-
Alejandro Sanchez authored
Which can be used to force to retrieve the information about all the components in a heterogeneous job or just the ones selected, leaving untouched the way regular jobs and/or arrays are retrieved. Bug 4373.
-
Alejandro Sanchez authored
cluster_name is now passed as an argument, since it'll be needed for a subsequent commit subquery. No functional change. Bug 4373.
-
Alejandro Sanchez authored
No functional change. Bug 4373.
-
Alejandro Sanchez authored
No functional change. Bug 4373.
-
Marshall Garey authored
Bug 5481.
-
Dominik Bartkiewicz authored
for an allocation. Bug 5293
-
- 06 Aug, 2018 4 commits
-
-
Brian Christiansen authored
-
Brian Christiansen authored
when validating memory limits Continuation of b502d179
-
Tim Wickberg authored
After changes to slurm_send_only_node_msg(), this message is much more likely to appear on systems with overloaded interconnects since that connection handling code may end up retransmitting messages that were actually received (but that the transmit side could not verify were delivered successfully). As the error() message stated, this isn't actually an error, and the code will proceed happily past this point. So drop the debug level, and remove the surrealist "this is not an error" part. Bug 5164.
-
Tim Wickberg authored
There are subtle issues involved in treating a TCP transmission as a unidirectional message delivery layer. The original code path looks like: connect(), write(), close(). But Linux handles the write() and close() asynchronously behind the scenes, and does not block until that write() has been ACK'd by the remote end. So the write() and close() may succeed, even with data still in flight. A communication error - and message loss - would have been silently ignored, leading to unreliable message transmission. Worse yet, one side of the connection would believe it sent the message, while the receive side swears it never saw the packets. This leads to infrequent and yet seemingly impossible data loss, and a very tough bug to chase down. This teardown code tries to force the connection to shut down in an orderly manner, giving Slurm a chance to catch a connection problem and the upstream calling path an opportunity to retransmit. This teardown code is based on an approach described in Section 7.5 of "UNIX Network Programming" Volume 1 (Third Edition), specifically the subsection regarding SO_LINGER. (And also covers why SO_LINGER is not sufficent to prevent this issue.) Bug 5164.
-