diff --git a/CHANGELOG.md b/CHANGELOG.md index 983aa14277..91909e0b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/core/src/scheduler/task/SearchTask.cpp b/core/src/scheduler/task/SearchTask.cpp index a24fc909d9..50d1990ba6 100644 --- a/core/src/scheduler/task/SearchTask.cpp +++ b/core/src/scheduler/task/SearchTask.cpp @@ -130,7 +130,7 @@ XSearchTask::XSearchTask(const std::shared_ptr& 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