使用DeleteSearchIndex接口可以删除指定数据表的一个多元索引。
前提条件
已初始化Client。具体操作,请参见初始化OTSClient。
已在数据表上创建多元索引。具体操作,请参见创建多元索引。
注意事项
多元索引删除后不可恢复,请谨慎操作。
参数
参数 | 说明 |
TableName | 数据表名称。 |
IndexName | 多元索引名称。 |
示例
以下示例用于删除多元索引。
func DeleteSearchIndex(client *tablestore.TableStoreClient, tableName string, indexName string) {
request := &tablestore.DeleteSearchIndexRequest{}
request.TableName = tableName //设置数据表名称。
request.IndexName = indexName //设置多元索引名称。
resp, err := client.DeleteSearchIndex(request) //调用client删除多元索引。
if err != nil {
fmt.Println("error: ", err)
return
}
fmt.Println("DeleteSearchIndex finished, requestId: ", resp.ResponseInfo.RequestId)
}
相关文档
如果已有多元索引不满足使用需求,您可以创建新的多元索引或者通过修改多元索引的Schema来增删改多元索引字段。具体操作,请参见创建多元索引和动态修改schema。