VectorSource.cpp 2.3 KB
Newer Older
Z
zhiru 已提交
1
#include "VectorSource.h"
S
starlord 已提交
2 3 4
#include "db/engine/ExecutionEngine.h"
#include "db/engine/EngineFactory.h"
#include "db/Log.h"
Z
zhiru 已提交
5
#include "metrics/Metrics.h"
Z
zhiru 已提交
6

Z
update  
zhiru 已提交
7

Z
zhiru 已提交
8 9 10 11 12 13 14
namespace zilliz {
namespace milvus {
namespace engine {


VectorSource::VectorSource(const size_t &n,
                           const float *vectors) :
Y
Yu Kun 已提交
15 16 17
        n_(n),
        vectors_(vectors),
        id_generator_(std::make_shared<SimpleIDGenerator>()) {
Z
zhiru 已提交
18 19 20
    current_num_vectors_added = 0;
}

Z
update  
zhiru 已提交
21 22 23
Status VectorSource::Add(const ExecutionEnginePtr &execution_engine,
                         const meta::TableFileSchema &table_file_schema,
                         const size_t &num_vectors_to_add,
Y
Yu Kun 已提交
24 25
                         size_t &num_vectors_added,
                         IDNumbers &vector_ids) {
Z
zhiru 已提交
26

Y
Yu Kun 已提交
27
    server::CollectAddMetrics metrics(n_, table_file_schema.dimension_);
Z
zhiru 已提交
28

Z
zhiru 已提交
29 30
    num_vectors_added = current_num_vectors_added + num_vectors_to_add <= n_ ?
                        num_vectors_to_add : n_ - current_num_vectors_added;
Z
zhiru 已提交
31
    IDNumbers vector_ids_to_add;
Y
Yu Kun 已提交
32 33 34 35 36 37 38 39
    if (vector_ids.empty()) {
        id_generator_->GetNextIDNumbers(num_vectors_added, vector_ids_to_add);
    } else {
        vector_ids_to_add.resize(num_vectors_added);
        for (int pos = current_num_vectors_added; pos < current_num_vectors_added + num_vectors_added; pos++) {
            vector_ids_to_add[pos-current_num_vectors_added] = vector_ids[pos];
        }
    }
Z
zhiru 已提交
40 41 42
    Status status = execution_engine->AddWithIds(num_vectors_added,
                                                 vectors_ + current_num_vectors_added * table_file_schema.dimension_,
                                                 vector_ids_to_add.data());
Z
zhiru 已提交
43 44
    if (status.ok()) {
        current_num_vectors_added += num_vectors_added;
Z
zhiru 已提交
45 46 47
        vector_ids_.insert(vector_ids_.end(),
                           std::make_move_iterator(vector_ids_to_add.begin()),
                           std::make_move_iterator(vector_ids_to_add.end()));
Z
update  
zhiru 已提交
48
    } else {
Z
zhiru 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
        ENGINE_LOG_ERROR << "VectorSource::Add failed: " + status.ToString();
    }

    return status;
}

size_t VectorSource::GetNumVectorsAdded() {
    return current_num_vectors_added;
}

bool VectorSource::AllAdded() {
    return (current_num_vectors_added == n_);
}

IDNumbers VectorSource::GetVectorIds() {
    return vector_ids_;
}

} // namespace engine
} // namespace milvus
} // namespace zilliz