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 |
Example
new milvusClient(MILUVS_ADDRESS).dataManager.getQuerySegmentInfo({
collectionName: 'my_collection',
});
Return
// getQuerySegmentInfo return
{ status: { error_code: 'Success', reason: '' }, infos: [] }