Describe Index
This operation describes the current index.
The base URL for this API is in the following format:
https://${CLUSTER_ENDPOINT}
- You need to fill in
${CLUSTER_ENDPOINT}
with that of your Zilliz Cloud cluster. - To get the endpoint, refer to On Zilliz Cloud Console or use the Describe Cluster V2 API to extract the values from the responses.
export CLUSTER_ENDPOINT=""
The authentication token should be an API key with appropriate privileges or a pair of colon-joined username and password, like username:password
.
The name of the collection to which the index belongs.
The name of the index to describe.
export TOKEN="db_admin:xxxxxxxxxxxxx"
curl --request POST \
--url "${CLUSTER_ENDPOINT}/v2/vectordb/indexes/describe" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json" \
-d '{
"indexName": "vector",
"collectionName": "quick_setup"
}'
A success response.
Response code.
Response payload which is detailed information about the index.
The name of the target field.
The name of the index.
The status of the indexing progress.
The type of this index.
The total number of entities/rows that have been indexed.
The type of the similarity metric.
The number of entities/rows that are waiting to be indexed.
The total number of entities/rows.
The reason for the failure to build indexes.
A failure response.
Response code.
Error message.
{
"code": 0,
"data": [
{
"failReason": "",
"fieldName": "vector",
"indexName": "vector",
"indexState": "Finished",
"indexType": "",
"indexedRows": 0,
"metricType": "COSINE",
"pendingRows": 0,
"totalRows": 0
}
]
}