DescribeIndex()
This method describes the specified index by providing its detailed information.
func (c *Client) DescribeIndex(ctx context.Context, opt DescribeIndexOption, callOptions ...grpc.CallOption) (IndexDescription, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
DescribeIndexOption
This is an interface type. The describeIndexOption
struct type implements this interface type.
You can use the NewDescribeIndexOption()
function to get the concrete implementation.
NewDescribeIndexOption()
The signature of this method is as follows:
func NewDescribeIndexOption(collectionName string, indexName string) *describeIndexOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
| Name of the target index. |
|
IndexDescription
The IndexDescription
struct type is as follows:
type IndexDescription struct {
index.Index
State index.IndexState
PendingIndexRows int64
TotalRows int64
IndexedRows int64
}
index.Index
This is an interface type. For details, refer to index.Index.
index.IndexState
Possible values are as follows:
Return
IndexDescription
Example
indexInfo, err := cli.DescribeIndex(ctx, milvusclient.NewDescribeIndexOption("my_collection", "my_index"))
if err != nil {
// handle err
}
fmt.Println(indexInfo)