mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
c13c96e321
See #31262 --------- Signed-off-by: Ted Xu <ted.xu@zilliz.com>
135 lines
4.7 KiB
Go
135 lines
4.7 KiB
Go
// Licensed to the LF AI & Data foundation under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package segments
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"sync"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
"github.com/milvus-io/milvus/pkg/log"
|
|
"github.com/milvus-io/milvus/pkg/metrics"
|
|
"github.com/milvus-io/milvus/pkg/util/paramtable"
|
|
"github.com/milvus-io/milvus/pkg/util/timerecord"
|
|
)
|
|
|
|
// searchOnSegments performs search on listed segments
|
|
// all segment ids are validated before calling this function
|
|
func searchSegments(ctx context.Context, mgr *Manager, segments []Segment, segType SegmentType, searchReq *SearchRequest) ([]*SearchResult, error) {
|
|
var (
|
|
// results variables
|
|
resultCh = make(chan *SearchResult, len(segments))
|
|
errs = make([]error, len(segments))
|
|
wg sync.WaitGroup
|
|
|
|
// For log only
|
|
mu sync.Mutex
|
|
segmentsWithoutIndex []int64
|
|
)
|
|
|
|
searchLabel := metrics.SealedSegmentLabel
|
|
if segType == commonpb.SegmentState_Growing {
|
|
searchLabel = metrics.GrowingSegmentLabel
|
|
}
|
|
|
|
searcher := func(s Segment) error {
|
|
// record search time
|
|
tr := timerecord.NewTimeRecorder("searchOnSegments")
|
|
searchResult, err := s.Search(ctx, searchReq)
|
|
resultCh <- searchResult
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// update metrics
|
|
elapsed := tr.ElapseSpan().Milliseconds()
|
|
metrics.QueryNodeSQSegmentLatency.WithLabelValues(fmt.Sprint(paramtable.GetNodeID()),
|
|
metrics.SearchLabel, searchLabel).Observe(float64(elapsed))
|
|
metrics.QueryNodeSegmentSearchLatencyPerVector.WithLabelValues(fmt.Sprint(paramtable.GetNodeID()),
|
|
metrics.SearchLabel, searchLabel).Observe(float64(elapsed) / float64(searchReq.getNumOfQuery()))
|
|
return nil
|
|
}
|
|
|
|
// calling segment search in goroutines
|
|
for i, segment := range segments {
|
|
wg.Add(1)
|
|
go func(seg Segment, i int) {
|
|
defer wg.Done()
|
|
if !seg.ExistIndex(searchReq.searchFieldID) {
|
|
mu.Lock()
|
|
segmentsWithoutIndex = append(segmentsWithoutIndex, seg.ID())
|
|
mu.Unlock()
|
|
}
|
|
var err error
|
|
if seg.LoadStatus() == LoadStatusMeta {
|
|
err = mgr.DiskCache.Do(seg.ID(), searcher)
|
|
} else {
|
|
err = searcher(seg)
|
|
}
|
|
if err != nil {
|
|
errs[i] = err
|
|
}
|
|
}(segment, i)
|
|
}
|
|
wg.Wait()
|
|
close(resultCh)
|
|
|
|
searchResults := make([]*SearchResult, 0, len(segments))
|
|
for result := range resultCh {
|
|
searchResults = append(searchResults, result)
|
|
}
|
|
|
|
for _, err := range errs {
|
|
if err != nil {
|
|
DeleteSearchResults(searchResults)
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
if len(segmentsWithoutIndex) > 0 {
|
|
log.Ctx(ctx).Debug("search growing/sealed segments without indexes", zap.Int64s("segmentIDs", segmentsWithoutIndex))
|
|
}
|
|
|
|
return searchResults, nil
|
|
}
|
|
|
|
// search will search on the historical segments the target segments in historical.
|
|
// if segIDs is not specified, it will search on all the historical segments speficied by partIDs.
|
|
// if segIDs is specified, it will only search on the segments specified by the segIDs.
|
|
// if partIDs is empty, it means all the partitions of the loaded collection or all the partitions loaded.
|
|
func SearchHistorical(ctx context.Context, manager *Manager, searchReq *SearchRequest, collID int64, partIDs []int64, segIDs []int64) ([]*SearchResult, []Segment, error) {
|
|
segments, err := validateOnHistorical(ctx, manager, collID, partIDs, segIDs)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
searchResults, err := searchSegments(ctx, manager, segments, SegmentTypeSealed, searchReq)
|
|
return searchResults, segments, err
|
|
}
|
|
|
|
// searchStreaming will search all the target segments in streaming
|
|
// if partIDs is empty, it means all the partitions of the loaded collection or all the partitions loaded.
|
|
func SearchStreaming(ctx context.Context, manager *Manager, searchReq *SearchRequest, collID int64, partIDs []int64, segIDs []int64) ([]*SearchResult, []Segment, error) {
|
|
segments, err := validateOnStream(ctx, manager, collID, partIDs, segIDs)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
searchResults, err := searchSegments(ctx, manager, segments, SegmentTypeGrowing, searchReq)
|
|
return searchResults, segments, err
|
|
}
|