日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

統(tǒng)計Collection

本文介紹如何通過Java SDK獲取已創(chuàng)建的Collection的統(tǒng)計信息,如Doc數(shù)等。

前提條件

接口定義

// class DashVectorClient

public Response<CollectionStats> stats();

使用示例

說明
  1. 需要使用您的api-key替換示例中的YOUR_API_KEY、您的Cluster Endpoint替換示例中的YOUR_CLUSTER_ENDPOINT,代碼才能正常運行。

  2. 本示例需要參考新建Collection-使用示例提前創(chuàng)建好名稱為quickstart的Collection。

import com.aliyun.dashvector.DashVectorClient;
import com.aliyun.dashvector.DashVectorCollection;
import com.aliyun.dashvector.models.CollectionStats;
import com.aliyun.dashvector.common.DashVectorException;

public class Main {
    public static void main(String[] args) throws DashVectorException {
        DashVectorClient client = new DashVectorClient("YOUR_API_KEY", "YOUR_CLUSTER_ENDPOINT");

        DashVectorCollection collection = client.get("quickstart");
        Response<CollectionStats> response = collection.stats();
        
      	System.out.println(response);
      	// example output:
        // {
        //     "code":0,
        //     "message":"Success",
        //     "requestId":"84b801f9-7545-4f9e-b480-713d6c4d9393",
        //     "output":{
        //         "totalDocCount":1,
        //         "indexCompleteness":1,
        //         "partitions":{
        //             "default":{
        //                 "totalDocCount":1
        //             }
        //         }
        //     }
        // }
    }
}

入?yún)⒚枋?/b>

出參描述

說明

返回結(jié)果為Response<CollectionStats>對象,Response<CollectionStats>對象中可獲取本次操作結(jié)果信息,如下表所示。

方法

類型

描述

示例

getCode()

int

返回值,參考返回狀態(tài)碼說明

0

getMessage()

String

返回消息

success

getRequestId()

String

請求唯一id

19215409-ea66-4db9-8764-26ce2eb5bb99

getOutput()

CollectionStats

參考CollectionStats

{
  "totalDocCount":1,
  "indexCompleteness":1,
  "partitions":{
    "default":{
      "totalDocCount":1
    }
  }
}

isSuccess()

Boolean

判斷請求是否成功

true