mirror of https://github.com/milvus-io/milvus.git
parent
0e914949e8
commit
e865e9c893
|
@ -14,6 +14,7 @@ Please mark all change in change log and use the issue from GitHub
|
|||
- \#1686 API search_in_files cannot work correctly when vectors is stored in certain non-default partition
|
||||
- \#1689 Fix SQ8H search fail on SIFT-1B dataset
|
||||
- \#1724 Remove unused unittests
|
||||
- \#1734 Opentracing for combined search request
|
||||
|
||||
## Feature
|
||||
- \#1603 BinaryFlat add 2 Metric: Substructure and Superstructure
|
||||
|
|
|
@ -130,7 +130,7 @@ XSearchTask::XSearchTask(const std::shared_ptr<server::Context>& context, TableF
|
|||
|
||||
void
|
||||
XSearchTask::Load(LoadType type, uint8_t device_id) {
|
||||
auto load_ctx = context_->Follower("XSearchTask::Load " + std::to_string(file_->id_));
|
||||
milvus::server::ContextFollower tracer(context_, "XSearchTask::Load " + std::to_string(file_->id_));
|
||||
|
||||
TimeRecorder rc("");
|
||||
Status stat = Status::OK();
|
||||
|
@ -198,8 +198,6 @@ XSearchTask::Load(LoadType type, uint8_t device_id) {
|
|||
index_id_ = file_->id_;
|
||||
index_type_ = file_->file_type_;
|
||||
// search_contexts_.swap(search_contexts_);
|
||||
|
||||
load_ctx->GetTraceContext()->GetSpan()->Finish();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue