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
milvus: master-20240411-a938951e-amd64 sdk: go master
Create diskann index with mmap should return error: index type DISKANN does not support mmap
case:
func TestMmapIndexUnsupported(t *testing.T) { ctx := createContext(t, time.Second*common.DefaultTimeout*2) // connect mc := createMilvusClient(ctx, t) // create -> insert -> flush -> index -> load cp := CollectionParams{CollectionFieldsType: Int64FloatVec, AutoID: false, EnableDynamicField: false, ShardsNum: common.DefaultShards, Dim: common.DefaultDim} collName := createCollection(ctx, t, mc, cp) dp := DataParams{DoInsert: true, CollectionName: collName, CollectionFieldsType: Int64FloatVec, start: 0, nb: common.DefaultNb, dim: common.DefaultDim, EnableDynamicField: false} insertData(ctx, t, mc, dp) mc.Flush(ctx, collName, false) //create index with mmap idx, _ := entity.NewIndexDISKANN(entity.COSINE) err := mc.CreateIndex(ctx, collName, common.DefaultFloatVecFieldName, idx, false, client.WithMmap(true)) common.CheckErr(t, err, false, "index type DISKANN does not support mmap") }
No response
The text was updated successfully, but these errors were encountered:
/assign @congqixia
Sorry, something went wrong.
server milvus bug
fixed
congqixia
No branches or pull requests
Is there an existing issue for this?
Current Behavior
milvus: master-20240411-a938951e-amd64
sdk: go master
Create diskann index with mmap should return error: index type DISKANN does not support mmap
case:
Expected Behavior
No response
Steps To Reproduce
No response
Environment
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: