-
Notifications
You must be signed in to change notification settings - Fork 66
Add an Arbiter2 FAQ #505
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add an Arbiter2 FAQ #505
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
7597a57
begin creating the FAQ for what arbiter2 is, remove commented out cod…
b-reyes ca6a91d
modify items in the arbiter penalty table and expand on Arbiter2 FAQ
b-reyes 7a8d6cc
add an arbiter flowchart to make the process more understandable
b-reyes 96aebfc
fix arbiter flowchart logic
b-reyes da1db6f
add a logical step asking if you went below the threshold as the badn…
b-reyes 239fc71
add penalty occurances increase to arbiter flow chart
b-reyes 3a422ac
fix logic in arbiter graph and begin working on the arbiter table
b-reyes 13e23af
rearrange Arbiter2 FAQ
b-reyes 597eb6d
fill in all of the descriptions for the different terms
b-reyes 5d6540d
modify the arbiter flowchart so that the penalty occurences items are…
b-reyes 34157bb
Finish revising FAQ content, put term table and flow chart in dropdow…
b-reyes 6da2a16
modify CPU note
b-reyes 5ec32fe
add a sentence in the beginning paragraph explaining what happens onc…
b-reyes 34e6e25
Apply suggestions by Mike to intro paragraph
b-reyes c50cb76
apply login node suggestion by Mike
b-reyes ebaa21f
apply important admonition changes by Mike
b-reyes 9ae5b40
Apply changes proposed by mike in note admonition
b-reyes d0b3c30
remove in-depth information on arbiter (including the term table and …
b-reyes 653db3f
remove in-depth info and refine the left over content, modify table s…
b-reyes 30f6806
modify table so it states maximum user resource allocation for CPUs a…
b-reyes f49d8c9
Merge branch 'main' into arbiter-faq
b-reyes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
109 changes: 109 additions & 0 deletions
109
docs/getting_started/faq_html/arbiter_penalty_table.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,109 @@ | ||
| <style> | ||
|
|
||
| /* Light theme variables */ | ||
| html[data-theme="light"] { | ||
| --header-color: #91bff0; | ||
| --color-data-integrity: #dfdddd; | ||
| --color-data-limits: #f2f2f2; | ||
| --color-data-access: #dfdddd; | ||
| --color-data-transfer: #f2f2f2; | ||
| --color-data-compression: #dfdddd; | ||
| --border-color: black; | ||
| --text-color: black; | ||
| --header-border-weight: 2px; | ||
| --border-weight: 2px; | ||
| } | ||
|
|
||
| /* Dark theme variables */ | ||
| html[data-theme="dark"] { | ||
| --header-color: var(--pst-color-surface); | ||
| --color-data-integrity: var(--pst-color-on-background); | ||
| --color-data-limits: var(--pst-color-surface); | ||
| --color-data-access: var(--pst-color-on-background); | ||
| --color-data-transfer: var(--pst-color-surface); | ||
| --color-data-compression: var(--pst-color-on-background); | ||
| --border-color: #CFB87C; | ||
| --text-color: white; | ||
| --header-border-weight: 0.1px; | ||
| --border-weight: 0.1px; | ||
| } | ||
|
|
||
|
|
||
| .arbiter-table { | ||
| border-collapse: collapse; | ||
| width: 90%; | ||
| font-family: sans-serif; | ||
| /* Reapply necessary styles explicitly: */ | ||
| border: 1px solid #ccc; | ||
| } | ||
|
|
||
| .arbiter-table th { | ||
| background-color: var(--header-color); /* light blue for headers */ | ||
| border: var(--header-border-weight) solid var(--border-color); | ||
| padding: 8px; | ||
| font-size: 22px; | ||
| color: var(--text-color); | ||
| } | ||
|
|
||
| .arbiter-table tr.category-login-nodes td { | ||
| background-color: var(--color-data-integrity); | ||
| border: var(--border-weight) solid var(--border-color); | ||
| padding: 8px; | ||
| text-align: left; | ||
| color: var(--text-color); | ||
| font-size: 18px; | ||
| } | ||
|
|
||
| .arbiter-table td.tier-cell { | ||
| text-align: center !important; | ||
| } | ||
|
|
||
| /* Status Badges */ | ||
| .badge { | ||
| display: inline-block; | ||
| padding: 2px 8px; | ||
| border-radius: 12px; | ||
| font-size: 11px; | ||
| font-weight: bold; | ||
| } | ||
| .normal { background: #dafbe1; color: black; border: 1px solid #bc8; } | ||
| .p1 { background: #fff8c5; color: black; border: 1px solid #ee0; } | ||
| .p2 { background: #fbac77; color: black; border: 1px solid #ff6600; } | ||
| .p3 { background: #ffebe9; color: black; border: 1px solid #f99; } | ||
|
|
||
| </style> | ||
|
|
||
| <table class="arbiter-table"> | ||
| <thead> | ||
| <tr style="text-align: center;"> | ||
| <th rowspan="2">Host</th> | ||
| <th rowspan="2">Penalty State</th> | ||
| <th rowspan="2">Maximum User<br>Resource Allocation</th> | ||
| <th rowspan="2">Duration of Penalty</th> | ||
| </tr> | ||
| </thead> | ||
| <tbody> | ||
| <!-- Data Integrity --> | ||
| <tr class="category-login-nodes"> | ||
| <td rowspan="6">login nodes</td> | ||
| <td class="tier-cell"><span class="badge normal">normal</span></td> | ||
| <td class="tier-cell">4 CPU cores<br>4 GB of RAM</td> | ||
| <td class="tier-cell">N/A</td> | ||
| </tr> | ||
| <tr class="category-login-nodes"> | ||
| <td class="tier-cell"><span class="badge p1">penalty1</span></td> | ||
| <td class="tier-cell">3.2 CPU cores<br>3.2 GB of RAM </td> | ||
| <td class="tier-cell">30 minutes</td> | ||
| </tr> | ||
| <tr class="category-login-nodes"> | ||
| <td class="tier-cell"><span class="badge p2">penalty2</span></td> | ||
| <td class="tier-cell">2 CPU cores<br>2 GB of RAM</td> | ||
| <td class="tier-cell">1 hour</td> | ||
| </tr> | ||
| <tr class="category-login-nodes"> | ||
| <td class="tier-cell"><span class="badge p3">penalty3</span></td> | ||
| <td class="tier-cell">1.2 CPU cores<br>1.2 GB of RAM</td> | ||
| <td class="tier-cell">2 hours</td> | ||
| </tr> | ||
| </tbody> | ||
| </table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
151 changes: 151 additions & 0 deletions
151
graphviz_flowcharts/generated_images/arbiter_flowchart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.