-
Notifications
You must be signed in to change notification settings - Fork 129
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
memory-map/on-disk index support #758
Labels
Comments
Hi @n0thing233, in general, I think leveraging disk based ANN approaches could be very beneficial. There are a couple issues with supporting faiss's implementation:
All that being said, it is definitely worth looking into supporting some form of disk based ANN. |
Please +1 if you are looking for this feature to help prioritize |
5 tasks
Lets track in #1134 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem?
With limited memory resource, it is expensive to load the whole index file to memory and do the knn search
What solution would you like?
The Faiss backend natively support loading on-disk index in a memory-mapped way and do the search on the fly:
https://github.com/facebookresearch/faiss/wiki/Indexes-that-do-not-fit-in-RAM
I would like it to be implemented with open search , or is it already implemented?
What alternatives have you considered?
N/A
Do you have any additional context?
N/A
The text was updated successfully, but these errors were encountered: