Skip to content

Commit

Permalink
Fix a bug of V2 that dynamic values not inserted
Browse files Browse the repository at this point in the history
Signed-off-by: yhmo <[email protected]>
  • Loading branch information
yhmo committed Dec 3, 2024
1 parent c04d42b commit 274d60e
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/io/milvus/v2/utils/SchemaUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ public static FunctionSchema convertToGrpcFunction(CreateCollectionReq.Function

public static CreateCollectionReq.CollectionSchema convertFromGrpcCollectionSchema(CollectionSchema schema) {
CreateCollectionReq.CollectionSchema collectionSchema = CreateCollectionReq.CollectionSchema.builder()
.enableDynamicField(schema.getEnableDynamicField())
.build();
List<CreateCollectionReq.FieldSchema> fieldSchemas = new ArrayList<>();
for (FieldSchema fieldSchema : schema.getFieldsList()) {
Expand Down
58 changes: 58 additions & 0 deletions src/test/java/io/milvus/v2/client/MilvusClientV2DockerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1978,4 +1978,62 @@ void testDocInOut() {
System.out.println(result);
}
}

@Test
void testDynamicField() {
String collectionName = generator.generate(10);

client.createCollection(CreateCollectionReq.builder()
.collectionName(collectionName)
.dimension(DIMENSION)
.build());

List<JsonObject> rows = new ArrayList<>();
Gson gson = new Gson();
for (int i = 0; i < 100; i++) {
JsonObject row = new JsonObject();
row.addProperty("id", i);
row.add("vector", gson.toJsonTree(utils.generateFloatVector()));
row.addProperty(String.format("dynamic_%d", i), "this is dynamic value"); // this value is stored in dynamic field
rows.add(row);
}
InsertResp insertR = client.insert(InsertReq.builder()
.collectionName(collectionName)
.data(rows)
.build());

// query
QueryResp countR = client.query(QueryReq.builder()
.collectionName(collectionName)
.filter("")
.outputFields(Collections.singletonList("count(*)"))
.consistencyLevel(ConsistencyLevel.STRONG)
.build());
Assertions.assertEquals(100L, (long)countR.getQueryResults().get(0).getEntity().get("count(*)"));

GetResp getR = client.get(GetReq.builder()
.collectionName(collectionName)
.ids(Collections.singletonList(50L))
.outputFields(Collections.singletonList("*"))
.build());
Assertions.assertEquals(1, getR.getGetResults().size());
QueryResp.QueryResult queryR = getR.getGetResults().get(0);
Assertions.assertTrue(queryR.getEntity().containsKey("dynamic_50"));
Assertions.assertEquals("this is dynamic value", queryR.getEntity().get("dynamic_50"));

// search
SearchResp searchR = client.search(SearchReq.builder()
.collectionName(collectionName)
.data(Collections.singletonList(new FloatVec(utils.generateFloatVector())))
.filter("id == 10")
.topK(10)
.outputFields(Collections.singletonList("dynamic_10"))
.build());
List<List<SearchResp.SearchResult>> searchResults = searchR.getSearchResults();
Assertions.assertEquals(1, searchResults.size());
Assertions.assertEquals(1, searchResults.get(0).size());
SearchResp.SearchResult r = searchResults.get(0).get(0);
Assertions.assertTrue(r.getEntity().containsKey("dynamic_10"));
Assertions.assertEquals("this is dynamic value", r.getEntity().get("dynamic_10"));
}
}

0 comments on commit 274d60e

Please sign in to comment.