Skip to content
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

Classify user documents #147

Merged
merged 1 commit into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '19.x'
- name: Test Build
run: |
if [ -e yarn.lock ]; then
Expand All @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '19.x'
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Multi Hierarchy Elastic Quota Management
# Capacity Scheduling - Elastic Quota Management

Multi Hierarchy ElasticQuota Management is an ability of koord-scheduler to manage different user's resource usage in a shared-cluster.
Capacity Scheduling is an ability of koord-scheduler to manage different user's resource usage in a shared-cluster.

## Introduction
When several users or teams share a cluster, fairness of resource allocation is very important. the Koordinator provides
Expand All @@ -26,9 +26,9 @@ Please make sure Koordinator components are correctly installed in your cluster.

### Configurations

Multi-Hierarchy-ElasticQuota-Management is *Enabled* by default. You can use it without any modification on the koord-descheduler config.
Capacity-Scheduling is *Enabled* by default. You can use it without any modification on the koord-descheduler config.

## Use Multi-Hierarchy-ElasticQuota-Management
## Use Capacity-Scheduling

### Quick Start by Label

Expand Down
3 changes: 1 addition & 2 deletions docs/user-manuals/cpu-suppress.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# CPU Suppress

# CPU Utilization Threshold Management
## Introduction
In order to ensure the runtime quality of different workloads in co-located scenarios, Koordinator uses the CPU Suppress
mechanism provided by koordlet on the node side to suppress workloads of the Best Effort type when the load increases.
Expand Down
2 changes: 1 addition & 1 deletion docs/user-manuals/fine-grained-cpu-orchestration.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Fine-grained CPU Orchestration
# CPU Orchestration

Fine-grained CPU Orchestration is an ability of koord-scheduler for improving the performance of CPU-sensitive workloads.

Expand Down
2 changes: 1 addition & 1 deletion docs/user-manuals/fine-grained-device-scheduling.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Device Scheduling
# Device Scheduling - GPU/RDMA
We provide a fine-grained mechanism for managing GPUs and other devices such as RDMA and FPGA, defines a set of APIs to
describe device information on nodes, including GPU, RDMA, and FPGA, and a new set of resource names to flexibly support
users to apply at a finer granularity GPU resources. This mechanism is the basis for subsequent other GPU scheduling
Expand Down
49,037 changes: 20,803 additions & 28,234 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "2.0.0-beta.17",
"@docusaurus/preset-classic": "2.0.0-beta.17",
"@docusaurus/core": "^2.4.1",
"@docusaurus/preset-classic": "^2.4.1",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.1.1",
"docusaurus": "^1.14.7",
"docusaurus": "^0.0.2",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-github-btn": "^1.2.1",
"react-scripts": "^3.4.1",
"url-loader": "^4.1.1"
},
"browserslist": {
Expand Down
50 changes: 32 additions & 18 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,38 @@ const sidebars = {
label: 'User Manuals',
collapsed: true,
items: [
'user-manuals/colocation-profile',
'user-manuals/load-aware-scheduling',
'user-manuals/load-aware-descheduling',
'user-manuals/fine-grained-cpu-orchestration',
'user-manuals/resource-reservation',
'user-manuals/pod-migration-job',
'user-manuals/fine-grained-device-scheduling',
'user-manuals/gang-scheduling',
'user-manuals/multi-hierarchy-elastic-quota-management',
'user-manuals/slo-config',
'user-manuals/cpu-suppress',
'user-manuals/cpu-burst',
'user-manuals/cpu-qos',
'user-manuals/cpu-evict',
'user-manuals/memory-qos',
'user-manuals/memory-evict',
'user-manuals/performance-collector',
'user-manuals/host-application-qos',
{
'Task Scheduling': [
'user-manuals/gang-scheduling',
'user-manuals/capacity-scheduling',
],
'Heterogeneous Resources Scheduling': [
'user-manuals/fine-grained-device-scheduling',
],
'Load-aware Scheduling': [
'user-manuals/load-aware-scheduling',
'user-manuals/load-aware-descheduling',
],
'Fine-grained Scheduling': [
'user-manuals/fine-grained-cpu-orchestration',
'user-manuals/cpu-burst',
'user-manuals/cpu-qos',
'user-manuals/memory-qos',
],
'Colocation': [
'user-manuals/colocation-profile',
'user-manuals/cpu-suppress',
'user-manuals/cpu-evict',
'user-manuals/memory-evict',
'user-manuals/slo-config',
'user-manuals/host-application-qos',
'user-manuals/performance-collector',
],
'Utils' : [
'user-manuals/resource-reservation',
'user-manuals/pod-migration-job',
]
}
],
},
{
Expand Down
Loading
Loading