Closed NicoYuan1986 closed 2 years ago
/assign @soothing-rain /unassign
@NicoYuan1986 There's no error in the log. Can you double check if Milvus restarted from OOM?
@soothing-rain milvus should have a limitation that nq < 16,384, could you check why this does not take effect?
@soothing-rain milvus should have a limitation that nq < 16,384, could you check why this does not take effect?
Turns out there's a limit on topK but not on nq.
For example we can do:
hello_milvus.search(vectors_to_search[:1000000], "embeddings", search_params, limit=16384, output_fields=["random"])
@soothing-rain milvus should have a limitation that nq < 16,384, could you check why this does not take effect?
Turns out there's a limit on topK but not on nq.
For example we can do:
hello_milvus.search(vectors_to_search[:1000000], "embeddings", search_params, limit=16384, output_fields=["random"])
in https://milvus.io/docs/limitations.md there is a limit. If not we should add one
/unassign /assign @NicoYuan1986
Please verify.
Solved! Thank you so much!
Is there an existing issue for this?
Environment
Current Behavior
When searching with nb=1000000 after creating index, milvus will restart unexpectedly. I don't know if it's related to the index, because I search successfully without index.
Expected Behavior
Search successfully
Steps To Reproduce
Milvus Log
test.log
Anything else?
No response