-
Notifications
You must be signed in to change notification settings - Fork 57
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
Deprecation of Master nomenclature #203
Deprecation of Master nomenclature #203
Conversation
Signed-off-by: Kaushal Kumar <kshkmr@amazon.com> Signed-off-by: Kaushal Kumar <kshkmr@amazon.com>
* version increment automation Signed-off-by: pgodithi <pgodithi@amazon.com> * version increment automation Signed-off-by: pgodithi <pgodithi@amazon.com> Signed-off-by: Kaushal Kumar <kshkmr@amazon.com>
Signed-off-by: Sagar Upadhyaya <sagar.upadhyaya.121@amazon.com> Co-authored-by: Sagar Upadhyaya <sagar.upadhyaya.121@amazon.com> Signed-off-by: Kaushal Kumar <kshkmr@amazon.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Recommend breaking this into multiple commits spanning groups of packages.
That will make it easier to split the review across multiple eyes.
@@ -21,7 +21,7 @@ | |||
"max-flow-units-per-vertex-buffer": 200, | |||
|
|||
"tags": { | |||
"locus": "idle-master-node" | |||
"locus": "cluster_manager-node" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this prefix idle-
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is correct. Because there is another file called rca_idle_cluster_manager where the locus has value as "idle-cluster_manager-node".
@@ -789,16 +789,17 @@ public String toString() { | |||
} | |||
|
|||
public static class Constants { | |||
public static final String PENDING_TASKS_COUNT_VALUE = "Master_PendingQueueSize"; | |||
public static final String PENDING_TASKS_COUNT_VALUE = | |||
"ClusterManager_PendingQueueSize"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: single line assignment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok
public static final String sElectionTermPath = "election_term"; | ||
public static final String sHttpPath = "http"; | ||
public static final String sOSPath = "os_metrics"; | ||
public static final String sHeapPath = "heap_metrics"; | ||
public static final String sNodesPath = "node_metrics"; | ||
public static final String sPendingTasksPath = "pending_tasks"; | ||
public static final String sMasterThrottledTasksPath = "master_throttling_metrics"; | ||
public static final String sClusterManagerThrottledTasksPath = | ||
"cluster_manager_throttling_metrics"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: single line assignment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok
Signed-off-by: Kaushal Kumar <kshkmr@amazon.com>
c8b37ce
to
38af297
Compare
@@ -54,8 +54,8 @@ jobs: | |||
- name: Checkout Performance Analyzer | |||
uses: actions/checkout@v2 | |||
with: | |||
repository: opensearch-project/performance-analyzer | |||
ref: main | |||
repository: kaushalmahi12/performance-analyzer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this PA repository & ref change temporary?
I will break the commit into smaller ones and raise the PR against those. It will help the reviewers to review the changes without getting tired. |
Is your feature request related to a problem? Please provide an existing Issue # , or describe.
Master Nomenclature Issue
Describe the solution you are proposing
This change is to stop the usage of
master
keyword in the performance-analyzer-rca codebase.Additional context
Add any other context or screenshots about the feature request here.
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.