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
GetVectorByIds
IVF index constructs the id->offset map during getvectors stage : https://github.com/zilliztech/knowhere/blob/main/src/index/ivf/ivf.cc#L580. This design will cause write/write concurrence when user calls the interface concurrently because the idmap is shared and not thread-safe.
related milvus issue: #milvus-io/milvus#27390
The text was updated successfully, but these errors were encountered:
@elstic Fixed
Sorry, something went wrong.
Yes, it was fixed. I'm not getting search failures on the milvus side of the continuous concurrency test
No branches or pull requests
IVF index constructs the id->offset map during getvectors stage : https://github.com/zilliztech/knowhere/blob/main/src/index/ivf/ivf.cc#L580. This design will cause write/write concurrence when user calls the interface concurrently because the idmap is shared and not thread-safe.
related milvus issue: #milvus-io/milvus#27390
The text was updated successfully, but these errors were encountered: