getQuerySegmentInfo()
This method checks the information of the segments in the query nodes via proxy.
Invocation
new milvusClient(MILUVS_ADDRESS).dataManager.getQuerySegmentInfo(
getQuerySegmentInfoReq
);
Parameters
getQuerySegmentInfoReq
Parameter | Description | Type | Required |
---|---|---|---|
collectionName | Name of the collection to check | String | True |
timeout | An optional duration of time in millisecond to allow for the RPC. Default is undefined | Number | False |
Example
new milvusClient(MILUVS_ADDRESS).dataManager.getQuerySegmentInfo({
collectionName: "my_collection",
});
Return
// getQuerySegmentInfo return
{ status: { error_code: 'Success', reason: '' }, infos: [] }