We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The warmup API decides what segments to load based on the file name it would build for the segments: https://github.com/opensearch-project/k-NN/blob/main/src/main/java/org/opensearch/knn/index/KNNIndexShard.java#L129-L130. The problem with this is that for segment files built with older versions of a library, the lib version is included in the file name. This leads to these files getting skipped during warmup
Update warmup API logic to get files in a backwards compatible manner.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
The warmup API decides what segments to load based on the file name it would build for the segments: https://github.com/opensearch-project/k-NN/blob/main/src/main/java/org/opensearch/knn/index/KNNIndexShard.java#L129-L130. The problem with this is that for segment files built with older versions of a library, the lib version is included in the file name. This leads to these files getting skipped during warmup
Proposed solution
Update warmup API logic to get files in a backwards compatible manner.
The text was updated successfully, but these errors were encountered: