I’ve created a design document for PP-718: Add fairshare usage values to the formula.
If people could give it a read over and give me comments, that’d be great.
Thanks,
Bhroam
I’ve created a design document for PP-718: Add fairshare usage values to the formula.
If people could give it a read over and give me comments, that’d be great.
Thanks,
Bhroam
This will be a great addition to the PBS Pro formula – thanks @bhroam!
I suggest dropping “tree” from “fairshare_tree_usage”, so it is shorter and is more parallel with the name “fairshare_perc”. (I think “usage” might also be confusing, as it connotes “amount used” – if I think of a better word, I’ll share it.)
@billnitzberg thanks for your comments.
I chose “fairshare_tree_usage” instead of “fairshare_usage” because the two are kind of different. We refer to an entity’s fairshare usage as their actual usage. This takes the entire tree into account, so I added tree in there.
Usage does mean amount used. This is the usage in a normalized form (number between 0 and 1). The real usage number is the accumulated amount of usage calculated by the fairshare formula (with decay taken into account). If the word really bothers you, we could change it, but I think it’s OK.
Bhroam
Perhaps normalized_usage would be a better choice?
@mkaro, with the suggested “normalized_usage” is not obvious that it is directly tied to fairshare. “fairshare_normalized_usage” is a bit long for my taste, but it does convey the meaning more clearly, I think.
@bhroam, in the section providing an example way to do a direct comparison between entities, the “entity’s target” term is really “fairshare_perc” (as it correctly appears the second time), and so “2^-(fairshare_tree_usage / entity’s target)” should be updated to use consistent terminology.
I’ve updated the EDD slightly.
I’ve added a 3rd interface which is changes to pbsfs. The arbitrary usage will show up in both the default output and the pbsfs -g output.
Bhroam
Hi Bhroam, I like the addition, but I am concerned that this change to default output may cause problems for people who have built scripts around the original pbsfs output format. I am concerned about this more for pbsfs than for pbsfs -g. Should we add a new option (-a?) to produce this output?
Also, I am pretty sure the answer is “no”, but is there a way to obtain fairshare usage data through the API that we’d also need to consider with this change?
I hear your concern and agree that it could be an issue. I’m not sure adding a new option is the answer though. We’d then have two ways to print pretty much the exact same data. I doubt the new option would be used. I removed the new column from interface 3. You can still obtain the arbitrary usage via pbsfs -g for an entity.
The IFL API talks to the server. The fairshare usage is in the control of the scheduler (at least for now). The pbsfs command directly talks to the usage file. So no, we don’t need to worry about the API.
PTL is currently broken when it tries to reset the fairshare usage in revert_to_defaults(). It tries to remove the usage file. The file gets rewritten on the next scheduling cycle.
To fix this, I have added interface 4. Right now when the scheduler receives a HUP, it will write out its view of the fairshare usage before rereading it again. This ways needed back when we didn’t write out the fairshare usage every scheduling cycle. I will modify this behavior so that it won’t write out the usage on a HUP. It will just read the current usage file. If changes were made via pbsfs, the scheduler will see them.
PTL reverts to defaults by removing the fairshare usage file. I’ll modify the PTL library to HUP the scheduler after it does so.
Bhroam
In a discussion with @billnitzberg, he pointed out that Interface 4 shouldn’t be part of this issue. It is a pbsfs/PTL issue and doesn’t have anything to do with fairshare in the formula. I happen to need to fix it to write PTL tests, but it should be tracked separately. I have filed PP-795 for this issue.
I’m sure it is very late to comment on the design proposal now but just have 2 small observations -
IMO we should make is the value of formula (pow(2, -(fairshare_tree_usage/fairshare_perc))) a pre-computed factor or at least give it a name and replace it while evaluating job_sort_formula. I’m not saying that we do not expose fairshare_tree_usage and fairshare_perc. Doing this will make it simple for admins to set fairshare formula and also allow them to use a different formula is they want to.
Example of setting job_sort_formula using qmgr needs a change, it is missing “-(”.
Thank you for your comments @arungrover. I have updated the EDD. I’ve replaced the term arbitrary usage with effective usage. The number is derived in a deterministic way. It isn’t arbitrary.
I’ve reordered the interfaces to add interface 2. There is a new formula keyword ‘fairshare_factor’. This is a shorthand keyword to make users of fairshare in the formula easier. If they want to use our suggested formula, they can use fairshare_factor. If they want to use their own, they can use fairshare_tree_usage in their own formula.
Lastly I have an example on how to add fairshare to the formula using math. The pow() function uses a comma which is a special character to qmgr. This requires extra quoting.
Take a look.
Bhroam
Changes look good to me, thanks!
@bhroam your change looks good!