We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f1a2a commit 1c5bddcCopy full SHA for 1c5bddc
pymilvus/client/grpc_handler.py
@@ -1051,6 +1051,10 @@ def describe_index(
1051
check_status(status)
1052
if len(response.index_descriptions) == 1:
1053
info_dict = {kv.key: kv.value for kv in response.index_descriptions[0].params}
1054
+ info_dict["total_rows"] = response.index_descriptions[0].total_rows
1055
+ info_dict["indexed_rows"] = response.index_descriptions[0].indexed_rows
1056
+ info_dict["pending_index_rows"] = response.index_descriptions[0].pending_index_rows
1057
+ info_dict["state"] = response.index_descriptions[0].state
1058
info_dict["field_name"] = response.index_descriptions[0].field_name
1059
info_dict["index_name"] = response.index_descriptions[0].index_name
1060
if info_dict.get("params"):
0 commit comments