-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhance memory plugin with advisor (#136)
* fix(qrm): fix cpu allocation handlers log * feat(qrm): enhance memory plugin with advisor * fix(qrm): use NUMA balance stategy for blocks with fake NUMA id * test(qrm): add unit-tests for memory plugin with advisor * fix(qrm): fix cpu/memory state struct clone semantic * refine(qrm): refine according to comments for memory plugin with advisor * fix(test): fix write/read race for testing --------- Co-authored-by: shaowei.wayne <shaowei.wayne@bytedance.com>
- Loading branch information
1 parent
ad3aff5
commit de23e44
Showing
31 changed files
with
1,912 additions
and
133 deletions.
There are no files selected for viewing
This file contains 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 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 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 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,55 @@ | ||
/* | ||
Copyright 2022 The Katalyst Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package commonstate | ||
|
||
import "github.com/kubewharf/katalyst-core/pkg/util/general" | ||
|
||
// ControlKnobInfo shows common types of control knobs: | ||
// 1. applied by cgroup manager according to entryName, subEntryName, cgroupIfaceName and cgroupSubsysName | ||
// 2. applied by QRM framework according to ociPropertyName | ||
// | ||
// there may be new types of control knobs, | ||
// we won't modified this struct to identify them, | ||
// and we will register custom per-control-knob executor to deal with them. | ||
type ControlKnobInfo struct { | ||
ControlKnobValue string `json:"control_knob_value"` | ||
|
||
// for control knobs applied by cgroup manager | ||
// according to entryName, subEntryName, cgroupIfaceName and cgroupSubsysName | ||
CgroupVersionToIfaceName map[string]string `json:"cgroup_version_to_iface_name"` | ||
CgroupSubsysName string `json:"cgroup_subsys_name"` | ||
|
||
// for control knobs applied by QRM framework according to ociPropertyName | ||
OciPropertyName string `json:"oci_property_name"` | ||
} | ||
|
||
func (cki ControlKnobInfo) Clone() ControlKnobInfo { | ||
return ControlKnobInfo{ | ||
ControlKnobValue: cki.ControlKnobValue, | ||
CgroupVersionToIfaceName: general.DeepCopyMap(cki.CgroupVersionToIfaceName), | ||
CgroupSubsysName: cki.CgroupSubsysName, | ||
OciPropertyName: cki.OciPropertyName, | ||
} | ||
} | ||
|
||
type ExtraControlKnobConfigs map[string]ExtraControlKnobConfig | ||
|
||
type ExtraControlKnobConfig struct { | ||
PodExplicitlyAnnotationKey string `json:"pod_explicitly_annotation_key"` | ||
QoSLevelToDefaultValue map[string]string `json:"qos_level_to_default_value"` | ||
ControlKnobInfo `json:"control_knob_info"` | ||
} |
This file contains 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,38 @@ | ||
/* | ||
Copyright 2022 The Katalyst Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package commonstate | ||
|
||
import ( | ||
"encoding/json" | ||
"io/ioutil" | ||
) | ||
|
||
func LoadExtraControlKnobConfigs(extraControlKnobConfigAbsPath string) (ExtraControlKnobConfigs, error) { | ||
configBytes, err := ioutil.ReadFile(extraControlKnobConfigAbsPath) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
extraControlKnobConfigs := make(ExtraControlKnobConfigs) | ||
|
||
err = json.Unmarshal(configBytes, &extraControlKnobConfigs) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return extraControlKnobConfigs, nil | ||
} |
This file contains 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 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 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 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
Oops, something went wrong.