mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
6913283716
Signed-off-by: longjiquan <jiquan.long@zilliz.com>
26 lines
597 B
Go
26 lines
597 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"
|
|
)
|
|
|
|
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.CollectionName = r.collectionName
|
|
return res, nil
|
|
}
|