mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-31 07:55:38 +08:00
62 lines
2.3 KiB
C++
62 lines
2.3 KiB
C++
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// Licensed 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
|
|
|
|
#include "ScalarIndex.h"
|
|
|
|
namespace milvus::segcore {
|
|
std::pair<std::unique_ptr<IdArray>, std::vector<SegOffset>>
|
|
ScalarIndexVector::do_search_ids(const IdArray& ids) const {
|
|
auto res_ids = std::make_unique<IdArray>();
|
|
// TODO: support string array
|
|
static_assert(std::is_same_v<T, int64_t>);
|
|
Assert(ids.has_int_id());
|
|
auto src_ids = ids.int_id();
|
|
auto dst_ids = res_ids->mutable_int_id();
|
|
std::vector<SegOffset> dst_offsets;
|
|
|
|
// TODO: a possible optimization:
|
|
// TODO: sort the input id array to make access cache friendly
|
|
|
|
// assume no repeated key now
|
|
// TODO: support repeated key
|
|
for (auto id : src_ids.data()) {
|
|
using Pair = std::pair<T, SegOffset>;
|
|
auto [iter_beg, iter_end] =
|
|
std::equal_range(mapping_.begin(), mapping_.end(), std::make_pair(id, SegOffset(0)),
|
|
[](const Pair& left, const Pair& right) { return left.first < right.first; });
|
|
|
|
if (iter_beg == iter_end) {
|
|
// no data
|
|
continue;
|
|
}
|
|
// TODO: for repeated key, decide the final offset with Timestamp
|
|
// no repeated key, simplified logic
|
|
Assert(iter_beg + 1 == iter_end);
|
|
auto [entry_id, entry_offset] = *iter_beg;
|
|
|
|
dst_ids->add_data(entry_id);
|
|
dst_offsets.push_back(entry_offset);
|
|
}
|
|
return {std::move(res_ids), std::move(dst_offsets)};
|
|
}
|
|
void
|
|
ScalarIndexVector::append_data(const ScalarIndexVector::T* ids, int64_t count, SegOffset base) {
|
|
for (int64_t i = 0; i < count; ++i) {
|
|
auto offset = base + SegOffset(i);
|
|
mapping_.emplace_back(ids[i], offset);
|
|
}
|
|
}
|
|
void
|
|
ScalarIndexVector::build() {
|
|
std::sort(mapping_.begin(), mapping_.end());
|
|
}
|
|
} // namespace milvus::segcore
|