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

查詢多元索引描述信息

創建多元索引后,使用DescribeSearchIndex接口可以查詢多元索引的描述信息,包括多元索引的字段信息和索引配置等。

前提條件

  • 已初始化Client。具體操作,請參見初始化OTSClient
  • 已創建數據表并寫入數據。
  • 已在數據表上創建多元索引。具體操作,請參見創建多元索引

參數

參數

說明

TableName

數據表名稱。

IndexName

多元索引名稱。

示例

以下示例用于獲取多元索引的詳細信息,例如數據生命周期、創建時間、同步狀態、字段信息等。

func DescribeSearchIndex(client *tablestore.TableStoreClient, tableName string, indexName string) {
    request := &tablestore.DescribeSearchIndexRequest{}
    request.TableName = tableName  //設置數據表名稱。
    request.IndexName = indexName  //設置多元索引名稱。
    resp, err := client.DescribeSearchIndex(request)
    if err != nil {
        fmt.Println("error: ", err)
        return
    }
    fmt.Println("FieldSchemas:")
    for _, schema := range resp.Schema.FieldSchemas {
        fmt.Printf("%s\n", schema) //打印多元索引中字段的schema信息。
    }
    fmt.Println("DescribeSearchIndex finished, requestId: ", resp.ResponseInfo.RequestId)
}

相關文檔

如果已有多元索引不滿足使用需求,您可以創建新的多元索引、通過修改多元索引的Schema來增刪改多元索引字段或者根據需要調整多元索引的TTL。具體操作,請參見創建多元索引動態修改schema生命周期管理