Skip to content
Snippets Groups Projects
Commit c3a30337 authored by Brian Christiansen's avatar Brian Christiansen
Browse files

Deprecated TICKET_BASED fairshare.

Bug 1743
parent 214c5372
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,7 @@ documents those changes that are of interest to users and administrators. ...@@ -34,6 +34,7 @@ documents those changes that are of interest to users and administrators.
-- Do not consider nodes explicitly powered up as DOWN with reason of "Node -- Do not consider nodes explicitly powered up as DOWN with reason of "Node
unexpected rebooted". unexpected rebooted".
-- Use correct slurmd spooldir when creating cpu-frequency locks. -- Use correct slurmd spooldir when creating cpu-frequency locks.
-- Deprecated TICKET_BASED fairshare. Consider using the FAIR_TREE algorithm.
* Changes in Slurm 14.11.7 * Changes in Slurm 14.11.7
========================== ==========================
......
...@@ -13,6 +13,10 @@ ...@@ -13,6 +13,10 @@
<a name=intro> <a name=intro>
<h2>Introduction</h2></a> <h2>Introduction</h2></a>
<p><b>Note:</b> This algorithm is deprecated and has been removed in 15.08. Please
consider using the <a href="fair_tree.html">Fair Tree</a> algorithm.
</p>
<p>A ticket-based variant of the priority/multifactor plugin is available. <p>A ticket-based variant of the priority/multifactor plugin is available.
The reader is assumed to be familiar with the priority/multifactor plugin The reader is assumed to be familiar with the priority/multifactor plugin
and only the differences are documented here.</p> and only the differences are documented here.</p>
......
...@@ -1118,6 +1118,10 @@ int read_slurm_conf(int recover, bool reconfig) ...@@ -1118,6 +1118,10 @@ int read_slurm_conf(int recover, bool reconfig)
/* Sync select plugin with synchronized job/node/part data */ /* Sync select plugin with synchronized job/node/part data */
select_g_reconfigure(); select_g_reconfigure();
if (slurmctld_conf.priority_flags & PRIORITY_FLAGS_TICKET_BASED)
info("TICKET_BASED fairshare is deprecated. Please consider "
"using the \"FAIR_TREE\" algorithm.");
slurmctld_conf.last_update = time(NULL); slurmctld_conf.last_update = time(NULL);
END_TIMER2("read_slurm_conf"); END_TIMER2("read_slurm_conf");
return error_code; return error_code;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment