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

DescribeSearchIndex

調用DescribeSearchIndex接口查詢多元索引描述信息,包括多元索引的字段信息和索引配置等。

請求消息結構

message DescribeSearchIndexRequest {
    optional string table_name = 1;
    optional string index_name = 2;
}

名稱

類型

是否必選

描述

table_name

string

數據表名稱。

index_name

string

多元索引名稱。

響應消息結構

message DescribeSearchIndexResponse {
    optional IndexSchema schema = 1;
    optional SyncStat sync_stat = 2;
    optional MeteringInfo metering_info = 3;
    optional string brother_index_name = 4;
    repeated QueryFlowWeight query_flow_weight = 5;
    optional int64 create_time = 6;
    optional int32 time_to_live = 7;  // unit is seconds
}

名稱

類型

是否必選

描述

schema

IndexSchema

索引Schema信息。

sync_stat

SyncStat

同步狀態,包括同步階段以及當前同步階段的時間。

metering_info

MeteringInfo

計量信息,包括存儲量大小、行數、預留讀吞吐量和時間。

brother_index_name

string

灰度索引的名稱。當使用動態修改schema功能更新多元索引結構時才會返回此參數。

query_flow_weight

repeated QueryFlowWeight

查詢權重配置。當使用動態修改schema功能更新多元索引結構時才會返回此參數。

create_time

int64

多元索引的創建時間。格式為64位的毫秒單位時間戳。

time_to_live

int32

多元索引生命周期,即數據的保存時間。單位為秒。

當數據的保存時間超過設置的數據生命周期時,系統會自動清理超過數據生命周期的數據。

使用SDK

您可以使用如下語言的SDK查詢多元索引描述信息。