123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- package io.milvus.v2;
- import com.google.gson.Gson;
- import com.google.gson.JsonObject;
- import io.milvus.v1.CommonUtils;
- import io.milvus.v2.client.ConnectConfig;
- import io.milvus.v2.client.MilvusClientV2;
- import io.milvus.v2.common.ConsistencyLevel;
- import io.milvus.v2.common.DataType;
- import io.milvus.v2.common.IndexParam;
- import io.milvus.v2.service.collection.request.AddFieldReq;
- import io.milvus.v2.service.collection.request.CreateCollectionReq;
- import io.milvus.v2.service.collection.request.DropCollectionReq;
- import io.milvus.v2.service.vector.request.InsertReq;
- import io.milvus.v2.service.vector.request.QueryReq;
- import io.milvus.v2.service.vector.request.SearchReq;
- import io.milvus.v2.service.vector.request.data.SparseFloatVec;
- import io.milvus.v2.service.vector.response.QueryResp;
- import io.milvus.v2.service.vector.response.SearchResp;
- import java.util.*;
- public class SparseVectorExample {
- private static final String COLLECTION_NAME = "java_sdk_example_sparse_vector_v2";
- private static final String ID_FIELD = "id";
- private static final String VECTOR_FIELD = "vector";
- public static void main(String[] args) {
- ConnectConfig config = ConnectConfig.builder()
- .uri("http://localhost:19530")
- .build();
- MilvusClientV2 client = new MilvusClientV2(config);
- // Drop collection if exists
- client.dropCollection(DropCollectionReq.builder()
- .collectionName(COLLECTION_NAME)
- .build());
- // Create collection
- CreateCollectionReq.CollectionSchema collectionSchema = CreateCollectionReq.CollectionSchema.builder()
- .build();
- collectionSchema.addField(AddFieldReq.builder()
- .fieldName(ID_FIELD)
- .dataType(DataType.Int64)
- .isPrimaryKey(Boolean.TRUE)
- .build());
- collectionSchema.addField(AddFieldReq.builder()
- .fieldName(VECTOR_FIELD)
- .dataType(DataType.SparseFloatVector)
- .build());
- List<IndexParam> indexes = new ArrayList<>();
- indexes.add(IndexParam.builder()
- .fieldName(VECTOR_FIELD)
- .indexType(IndexParam.IndexType.SPARSE_WAND)
- .metricType(IndexParam.MetricType.IP)
- .build());
- CreateCollectionReq requestCreate = CreateCollectionReq.builder()
- .collectionName(COLLECTION_NAME)
- .collectionSchema(collectionSchema)
- .indexParams(indexes)
- .consistencyLevel(ConsistencyLevel.BOUNDED)
- .build();
- client.createCollection(requestCreate);
- System.out.println("Collection created");
- // Insert entities by rows
- int rowCount = 10000;
- List<JsonObject> rows = new ArrayList<>();
- Gson gson = new Gson();
- List<SortedMap<Long, Float>> vectors = new ArrayList<>();
- for (long i = 0L; i < rowCount; ++i) {
- JsonObject row = new JsonObject();
- row.addProperty(ID_FIELD, i);
- SortedMap<Long, Float> vector = CommonUtils.generateSparseVector();
- vectors.add(vector);
- row.add(VECTOR_FIELD, gson.toJsonTree(vector));
- rows.add(row);
- }
- client.insert(InsertReq.builder()
- .collectionName(COLLECTION_NAME)
- .data(rows)
- .build());
- // Get row count, set ConsistencyLevel.STRONG to sync the data to query node so that data is visible
- QueryResp countR = client.query(QueryReq.builder()
- .collectionName(COLLECTION_NAME)
- .filter("")
- .outputFields(Collections.singletonList("count(*)"))
- .consistencyLevel(ConsistencyLevel.STRONG)
- .build());
- System.out.printf("%d rows persisted\n", (long)countR.getQueryResults().get(0).getEntity().get("count(*)"));
- // Pick some vectors from the inserted vectors to search
- // Ensure the returned top1 item's ID should be equal to target vector's ID
- for (int i = 0; i < 10; i++) {
- Random ran = new Random();
- int k = ran.nextInt(rowCount);
- SortedMap<Long, Float> targetVector = vectors.get(k);
- Map<String,Object> params = new HashMap<>();
- params.put("drop_ratio_search",0.2);
- SearchResp searchResp = client.search(SearchReq.builder()
- .collectionName(COLLECTION_NAME)
- .data(Collections.singletonList(new SparseFloatVec(targetVector)))
- .annsField(VECTOR_FIELD)
- .outputFields(Collections.singletonList(VECTOR_FIELD))
- .searchParams(params)
- .topK(3)
- .build());
- // The search() allows multiple target vectors to search in a batch.
- // Here we only input one vector to search, get the result of No.0 vector to check
- List<List<SearchResp.SearchResult>> searchResults = searchResp.getSearchResults();
- List<SearchResp.SearchResult> results = searchResults.get(0);
- System.out.printf("The result of No.%d target vector:\n", i);
- for (SearchResp.SearchResult result : results) {
- System.out.println(result.getEntity());
- }
- SearchResp.SearchResult firstResult = results.get(0);
- if ((long)firstResult.getId() != k) {
- throw new RuntimeException(String.format("The top1 ID %d is not equal to target vector's ID %d",
- firstResult.getId(), k));
- }
- SortedMap<Long, Float> sparse = (SortedMap<Long, Float>) firstResult.getEntity().get(VECTOR_FIELD);
- if (!sparse.equals(targetVector)) {
- throw new RuntimeException("The query result is incorrect");
- }
- }
- System.out.println("Search result is correct");
- // Retrieve some data
- int n = 99;
- QueryResp queryResp = client.query(QueryReq.builder()
- .collectionName(COLLECTION_NAME)
- .filter(String.format("id == %d", n))
- .outputFields(Collections.singletonList(VECTOR_FIELD))
- .build());
- List<QueryResp.QueryResult> queryResults = queryResp.getQueryResults();
- if (queryResults.isEmpty()) {
- throw new RuntimeException("The query result is empty");
- } else {
- SortedMap<Long, Float> sparse = (SortedMap<Long, Float>) queryResults.get(0).getEntity().get(VECTOR_FIELD);
- if (!sparse.equals(vectors.get(n))) {
- throw new RuntimeException("The query result is incorrect");
- }
- }
- System.out.println("Query result is correct");
- // Drop the collection if you don't need the collection anymore
- client.dropCollection(DropCollectionReq.builder()
- .collectionName(COLLECTION_NAME)
- .build());
- client.close();
- }
- }
|