mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
b1a1cca10b
issue: #30436 --------- Signed-off-by: SimFG <bang.fu@zilliz.com>
28 lines
671 B
Go
28 lines
671 B
Go
package proxy
|
|
|
|
import (
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/milvuspb"
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
"github.com/milvus-io/milvus/internal/util/funcutil"
|
|
"github.com/milvus-io/milvus/pkg/util/merr"
|
|
)
|
|
|
|
type cntReducer struct {
|
|
collectionName string
|
|
}
|
|
|
|
func (r *cntReducer) Reduce(results []*internalpb.RetrieveResults) (*milvuspb.QueryResults, error) {
|
|
cnt := int64(0)
|
|
for _, res := range results {
|
|
c, err := funcutil.CntOfInternalResult(res)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
cnt += c
|
|
}
|
|
res := funcutil.WrapCntToQueryResults(cnt)
|
|
res.Status = merr.Success()
|
|
res.CollectionName = r.collectionName
|
|
return res, nil
|
|
}
|