Skip to content

Commit

Permalink
Changing minimum version required for efSearch to be 3.0.0
Browse files Browse the repository at this point in the history
This makes sure that bwc passes in the PR. will be changed to 2.15 to
once this is merged to 2.x

Signed-off-by: Tejas Shah <[email protected]>
  • Loading branch information
shatejas committed May 21, 2024
1 parent 2a0af55 commit d7ce682
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/opensearch/knn/index/IndexUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ public class IndexUtil {
put(MODEL_NODE_ASSIGNMENT_KEY, MINIMAL_SUPPORTED_VERSION_FOR_MODEL_NODE_ASSIGNMENT);
put(MODEL_METHOD_COMPONENT_CONTEXT_KEY, MINIMAL_SUPPORTED_VERSION_FOR_MODEL_METHOD_COMPONENT_CONTEXT);
put(KNNConstants.RADIAL_SEARCH_KEY, MINIMAL_SUPPORTED_VERSION_FOR_RADIAL_SEARCH);
put(KNNConstants.EF_SEARCH, Version.V_2_15_0);
//TODO: Make 2.15 when we merge into 2.x. Making it 3.0.0 to make sure BWC passes
put(KNNConstants.EF_SEARCH, Version.V_3_0_0);
}
};

Expand Down

0 comments on commit d7ce682

Please sign in to comment.