-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add graph creation stats to KNNStats API
Signed-off-by: Ryan Bogan <[email protected]>
- Loading branch information
Showing
9 changed files
with
278 additions
and
17 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
95 changes: 95 additions & 0 deletions
95
src/main/java/org/opensearch/knn/plugin/stats/KNNGraphValue.java
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,95 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.knn.plugin.stats; | ||
|
||
import java.util.concurrent.atomic.AtomicLong; | ||
|
||
/** | ||
* Contains a map to keep track of different graph values | ||
*/ | ||
public enum KNNGraphValue { | ||
|
||
REFRESH_TOTAL_OPERATIONS("total"), | ||
REFRESH_TOTAL_TIME_IN_MILLIS("total_time_in_millis"), | ||
MERGE_CURRENT_OPERATIONS("current"), | ||
MERGE_CURRENT_DOCS("current_docs"), | ||
MERGE_CURRENT_SIZE_IN_BYTES("current_size_in_bytes"), | ||
MERGE_TOTAL_OPERATIONS("total"), | ||
MERGE_TOTAL_TIME_IN_MILLIS("total_time_in_millis"), | ||
MERGE_TOTAL_DOCS("total_docs"), | ||
MERGE_TOTAL_SIZE_IN_BYTES("total_size_in_bytes"); | ||
|
||
private String name; | ||
private AtomicLong value; | ||
|
||
/** | ||
* Constructor | ||
* | ||
* @param name name of the graph value | ||
*/ | ||
KNNGraphValue(String name) { | ||
this.name = name; | ||
this.value = new AtomicLong(0); | ||
} | ||
|
||
/** | ||
* Get name of value | ||
* | ||
* @return name | ||
*/ | ||
public String getName() { | ||
return name; | ||
} | ||
|
||
/** | ||
* Get the graph value | ||
* | ||
* @return value | ||
*/ | ||
public Long getValue() { | ||
return value.get(); | ||
} | ||
|
||
/** | ||
* Increment the graph value | ||
*/ | ||
public void increment() { | ||
value.getAndIncrement(); | ||
} | ||
|
||
/** | ||
* Decrement the graph value | ||
*/ | ||
public void decrement() { | ||
value.getAndDecrement(); | ||
} | ||
|
||
/** | ||
* Increment the graph value by a specified amount | ||
* | ||
* @param delta The amount to increment | ||
*/ | ||
public void incrementBy(long delta) { | ||
value.getAndAdd(delta); | ||
} | ||
|
||
/** | ||
* Decrement the graph value by a specified amount | ||
* | ||
* @param delta The amount to decrement | ||
*/ | ||
public void decrementBy(long delta) { | ||
value.set(value.get() - delta); | ||
} | ||
|
||
/** | ||
* @param value graph value | ||
* Set the graph value | ||
*/ | ||
public void set(long value) { | ||
this.value.set(value); | ||
} | ||
} |
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.