2020-11-24 13:28:38 +00:00
|
|
|
// 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
|
|
|
|
|
2020-08-29 09:37:53 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <random>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2020-10-31 07:11:47 +00:00
|
|
|
#include "segcore/collection_c.h"
|
2020-11-26 07:18:36 +00:00
|
|
|
#include "segcore/segment_c.h"
|
2020-11-17 02:07:42 +00:00
|
|
|
#include "pb/service_msg.pb.h"
|
2020-11-19 06:13:39 +00:00
|
|
|
#include "segcore/reduce_c.h"
|
2020-09-01 08:23:39 +00:00
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
#include <chrono>
|
|
|
|
namespace chrono = std::chrono;
|
2020-09-02 08:23:50 +00:00
|
|
|
|
2020-09-01 08:23:39 +00:00
|
|
|
TEST(CApiTest, CollectionTest) {
|
2020-09-21 10:16:06 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
2020-09-21 02:32:20 +00:00
|
|
|
DeleteCollection(collection);
|
2020-09-01 08:23:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(CApiTest, SegmentTest) {
|
2020-09-21 10:16:06 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
2020-09-21 02:32:20 +00:00
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
2020-09-01 08:23:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(CApiTest, InsertTest) {
|
2020-09-21 10:16:06 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
2020-09-21 02:32:20 +00:00
|
|
|
|
|
|
|
std::vector<char> raw_data;
|
|
|
|
std::vector<uint64_t> timestamps;
|
|
|
|
std::vector<int64_t> uids;
|
|
|
|
int N = 10000;
|
|
|
|
std::default_random_engine e(67);
|
|
|
|
for (int i = 0; i < N; ++i) {
|
|
|
|
uids.push_back(100000 + i);
|
|
|
|
timestamps.push_back(0);
|
|
|
|
// append vec
|
|
|
|
float vec[16];
|
|
|
|
for (auto& x : vec) {
|
|
|
|
x = e() % 2000 * 0.001 - 1.0;
|
|
|
|
}
|
2020-10-23 10:01:24 +00:00
|
|
|
raw_data.insert(raw_data.end(), (const char*)std::begin(vec), (const char*)std::end(vec));
|
2020-09-21 02:32:20 +00:00
|
|
|
int age = e() % 100;
|
2020-10-23 10:01:24 +00:00
|
|
|
raw_data.insert(raw_data.end(), (const char*)&age, ((const char*)&age) + sizeof(age));
|
2020-08-29 09:37:53 +00:00
|
|
|
}
|
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
auto line_sizeof = (sizeof(int) + sizeof(float) * 16);
|
2020-08-29 09:37:53 +00:00
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
auto offset = PreInsert(segment, N);
|
2020-09-12 08:57:37 +00:00
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
auto res = Insert(segment, offset, N, uids.data(), timestamps.data(), raw_data.data(), (int)line_sizeof, N);
|
2020-09-01 08:23:39 +00:00
|
|
|
|
2020-11-26 07:18:36 +00:00
|
|
|
assert(res == 0);
|
2020-08-29 09:37:53 +00:00
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
2020-09-01 08:23:39 +00:00
|
|
|
}
|
2020-09-02 08:23:50 +00:00
|
|
|
|
|
|
|
TEST(CApiTest, DeleteTest) {
|
2020-09-21 10:16:06 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
2020-09-02 08:23:50 +00:00
|
|
|
|
2020-10-31 07:11:47 +00:00
|
|
|
long delete_row_ids[] = {100000, 100001, 100002};
|
2020-09-21 02:32:20 +00:00
|
|
|
unsigned long delete_timestamps[] = {0, 0, 0};
|
2020-09-02 08:23:50 +00:00
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
auto offset = PreDelete(segment, 3);
|
2020-09-12 08:57:37 +00:00
|
|
|
|
2020-10-31 07:11:47 +00:00
|
|
|
auto del_res = Delete(segment, offset, 3, delete_row_ids, delete_timestamps);
|
2020-11-26 07:18:36 +00:00
|
|
|
assert(del_res == 0);
|
2020-09-02 08:23:50 +00:00
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
2020-09-02 08:23:50 +00:00
|
|
|
}
|
|
|
|
|
2020-09-15 08:37:43 +00:00
|
|
|
TEST(CApiTest, SearchTest) {
|
2020-09-21 10:16:06 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
2020-09-21 02:32:20 +00:00
|
|
|
|
|
|
|
std::vector<char> raw_data;
|
|
|
|
std::vector<uint64_t> timestamps;
|
|
|
|
std::vector<int64_t> uids;
|
|
|
|
int N = 10000;
|
|
|
|
std::default_random_engine e(67);
|
|
|
|
for (int i = 0; i < N; ++i) {
|
|
|
|
uids.push_back(100000 + i);
|
|
|
|
timestamps.push_back(0);
|
|
|
|
// append vec
|
|
|
|
float vec[16];
|
|
|
|
for (auto& x : vec) {
|
|
|
|
x = e() % 2000 * 0.001 - 1.0;
|
|
|
|
}
|
2020-10-23 10:01:24 +00:00
|
|
|
raw_data.insert(raw_data.end(), (const char*)std::begin(vec), (const char*)std::end(vec));
|
2020-09-21 02:32:20 +00:00
|
|
|
int age = e() % 100;
|
2020-10-23 10:01:24 +00:00
|
|
|
raw_data.insert(raw_data.end(), (const char*)&age, ((const char*)&age) + sizeof(age));
|
2020-09-02 08:23:50 +00:00
|
|
|
}
|
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
auto line_sizeof = (sizeof(int) + sizeof(float) * 16);
|
2020-09-15 09:41:05 +00:00
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
auto offset = PreInsert(segment, N);
|
2020-09-15 09:41:05 +00:00
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
auto ins_res = Insert(segment, offset, N, uids.data(), timestamps.data(), raw_data.data(), (int)line_sizeof, N);
|
2020-11-26 07:18:36 +00:00
|
|
|
assert(ins_res == 0);
|
2020-09-12 08:57:37 +00:00
|
|
|
|
2020-11-17 02:07:42 +00:00
|
|
|
const char* dsl_string = R"(
|
|
|
|
{
|
|
|
|
"bool": {
|
|
|
|
"vector": {
|
|
|
|
"fakevec": {
|
|
|
|
"metric_type": "L2",
|
|
|
|
"params": {
|
|
|
|
"nprobe": 10
|
|
|
|
},
|
|
|
|
"query": "$0",
|
|
|
|
"topk": 10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})";
|
|
|
|
|
|
|
|
namespace ser = milvus::proto::service;
|
|
|
|
int num_queries = 10;
|
|
|
|
int dim = 16;
|
|
|
|
std::normal_distribution<double> dis(0, 1);
|
|
|
|
ser::PlaceholderGroup raw_group;
|
|
|
|
auto value = raw_group.add_placeholders();
|
|
|
|
value->set_tag("$0");
|
|
|
|
value->set_type(ser::PlaceholderType::VECTOR_FLOAT);
|
|
|
|
for (int i = 0; i < num_queries; ++i) {
|
|
|
|
std::vector<float> vec;
|
|
|
|
for (int d = 0; d < dim; ++d) {
|
|
|
|
vec.push_back(dis(e));
|
|
|
|
}
|
|
|
|
// std::string line((char*)vec.data(), (char*)vec.data() + vec.size() * sizeof(float));
|
|
|
|
value->add_values(vec.data(), vec.size() * sizeof(float));
|
2020-09-21 02:32:20 +00:00
|
|
|
}
|
2020-11-17 02:07:42 +00:00
|
|
|
auto blob = raw_group.SerializeAsString();
|
2020-09-17 06:31:50 +00:00
|
|
|
|
2020-11-17 02:07:42 +00:00
|
|
|
auto plan = CreatePlan(collection, dsl_string);
|
2020-11-19 02:46:17 +00:00
|
|
|
auto placeholderGroup = ParsePlaceholderGroup(plan, blob.data(), blob.length());
|
2020-11-17 02:07:42 +00:00
|
|
|
std::vector<CPlaceholderGroup> placeholderGroups;
|
|
|
|
placeholderGroups.push_back(placeholderGroup);
|
|
|
|
timestamps.clear();
|
|
|
|
timestamps.push_back(1);
|
2020-09-17 06:31:50 +00:00
|
|
|
|
2020-11-26 07:18:36 +00:00
|
|
|
long result_ids[100];
|
|
|
|
float result_distances[100];
|
|
|
|
|
|
|
|
auto sea_res = Search(segment, plan, placeholderGroups.data(), timestamps.data(), 1, result_ids, result_distances);
|
|
|
|
assert(sea_res == 0);
|
2020-09-17 17:53:18 +00:00
|
|
|
|
2020-11-17 02:07:42 +00:00
|
|
|
DeletePlan(plan);
|
|
|
|
DeletePlaceholderGroup(placeholderGroup);
|
2020-09-21 02:32:20 +00:00
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
2020-09-17 17:53:18 +00:00
|
|
|
}
|
|
|
|
|
2020-11-26 07:18:36 +00:00
|
|
|
TEST(CApiTest, BuildIndexTest) {
|
|
|
|
auto schema_tmp_conf = "";
|
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
|
|
|
|
|
|
|
std::vector<char> raw_data;
|
|
|
|
std::vector<uint64_t> timestamps;
|
|
|
|
std::vector<int64_t> uids;
|
|
|
|
int N = 10000;
|
|
|
|
std::default_random_engine e(67);
|
|
|
|
for (int i = 0; i < N; ++i) {
|
|
|
|
uids.push_back(100000 + i);
|
|
|
|
timestamps.push_back(0);
|
|
|
|
// append vec
|
|
|
|
float vec[16];
|
|
|
|
for (auto& x : vec) {
|
|
|
|
x = e() % 2000 * 0.001 - 1.0;
|
|
|
|
}
|
|
|
|
raw_data.insert(raw_data.end(), (const char*)std::begin(vec), (const char*)std::end(vec));
|
|
|
|
int age = e() % 100;
|
|
|
|
raw_data.insert(raw_data.end(), (const char*)&age, ((const char*)&age) + sizeof(age));
|
|
|
|
}
|
|
|
|
|
|
|
|
auto line_sizeof = (sizeof(int) + sizeof(float) * 16);
|
|
|
|
|
|
|
|
auto offset = PreInsert(segment, N);
|
|
|
|
|
|
|
|
auto ins_res = Insert(segment, offset, N, uids.data(), timestamps.data(), raw_data.data(), (int)line_sizeof, N);
|
|
|
|
assert(ins_res == 0);
|
|
|
|
|
|
|
|
// TODO: add index ptr
|
|
|
|
Close(segment);
|
|
|
|
// BuildIndex(collection, segment);
|
|
|
|
|
|
|
|
const char* dsl_string = R"(
|
|
|
|
{
|
|
|
|
"bool": {
|
|
|
|
"vector": {
|
|
|
|
"fakevec": {
|
|
|
|
"metric_type": "L2",
|
|
|
|
"params": {
|
|
|
|
"nprobe": 10
|
|
|
|
},
|
|
|
|
"query": "$0",
|
|
|
|
"topk": 10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})";
|
|
|
|
|
|
|
|
namespace ser = milvus::proto::service;
|
|
|
|
int num_queries = 10;
|
|
|
|
int dim = 16;
|
|
|
|
std::normal_distribution<double> dis(0, 1);
|
|
|
|
ser::PlaceholderGroup raw_group;
|
|
|
|
auto value = raw_group.add_placeholders();
|
|
|
|
value->set_tag("$0");
|
|
|
|
value->set_type(ser::PlaceholderType::VECTOR_FLOAT);
|
|
|
|
for (int i = 0; i < num_queries; ++i) {
|
|
|
|
std::vector<float> vec;
|
|
|
|
for (int d = 0; d < dim; ++d) {
|
|
|
|
vec.push_back(dis(e));
|
|
|
|
}
|
|
|
|
// std::string line((char*)vec.data(), (char*)vec.data() + vec.size() * sizeof(float));
|
|
|
|
value->add_values(vec.data(), vec.size() * sizeof(float));
|
|
|
|
}
|
|
|
|
auto blob = raw_group.SerializeAsString();
|
|
|
|
|
|
|
|
auto plan = CreatePlan(collection, dsl_string);
|
|
|
|
auto placeholderGroup = ParsePlaceholderGroup(plan, blob.data(), blob.length());
|
|
|
|
std::vector<CPlaceholderGroup> placeholderGroups;
|
|
|
|
placeholderGroups.push_back(placeholderGroup);
|
|
|
|
timestamps.clear();
|
|
|
|
timestamps.push_back(1);
|
|
|
|
|
|
|
|
long result_ids[100];
|
|
|
|
float result_distances[100];
|
|
|
|
|
|
|
|
auto sea_res = Search(segment, plan, placeholderGroups.data(), timestamps.data(), 1, result_ids, result_distances);
|
|
|
|
assert(sea_res == 0);
|
|
|
|
|
|
|
|
DeletePlan(plan);
|
|
|
|
DeletePlaceholderGroup(placeholderGroup);
|
|
|
|
|
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
|
|
|
}
|
2020-09-03 11:58:33 +00:00
|
|
|
|
|
|
|
TEST(CApiTest, IsOpenedTest) {
|
2020-09-21 10:16:06 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
2020-09-21 02:32:20 +00:00
|
|
|
|
|
|
|
auto is_opened = IsOpened(segment);
|
|
|
|
assert(is_opened);
|
|
|
|
|
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
2020-09-03 11:58:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(CApiTest, CloseTest) {
|
2020-09-21 10:16:06 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
2020-09-21 02:32:20 +00:00
|
|
|
|
|
|
|
auto status = Close(segment);
|
|
|
|
assert(status == 0);
|
|
|
|
|
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
2020-09-19 09:10:23 +00:00
|
|
|
}
|
|
|
|
|
2020-09-21 07:10:54 +00:00
|
|
|
TEST(CApiTest, GetMemoryUsageInBytesTest) {
|
2020-10-23 10:01:24 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
2020-10-23 10:01:24 +00:00
|
|
|
|
|
|
|
auto old_memory_usage_size = GetMemoryUsageInBytes(segment);
|
|
|
|
std::cout << "old_memory_usage_size = " << old_memory_usage_size << std::endl;
|
|
|
|
|
|
|
|
std::vector<char> raw_data;
|
|
|
|
std::vector<uint64_t> timestamps;
|
|
|
|
std::vector<int64_t> uids;
|
|
|
|
int N = 10000;
|
|
|
|
std::default_random_engine e(67);
|
|
|
|
for (int i = 0; i < N; ++i) {
|
|
|
|
uids.push_back(100000 + i);
|
|
|
|
timestamps.push_back(0);
|
|
|
|
// append vec
|
|
|
|
float vec[16];
|
|
|
|
for (auto& x : vec) {
|
|
|
|
x = e() % 2000 * 0.001 - 1.0;
|
|
|
|
}
|
|
|
|
raw_data.insert(raw_data.end(), (const char*)std::begin(vec), (const char*)std::end(vec));
|
|
|
|
int age = e() % 100;
|
|
|
|
raw_data.insert(raw_data.end(), (const char*)&age, ((const char*)&age) + sizeof(age));
|
2020-09-21 07:10:54 +00:00
|
|
|
}
|
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
auto line_sizeof = (sizeof(int) + sizeof(float) * 16);
|
2020-09-21 07:10:54 +00:00
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
auto offset = PreInsert(segment, N);
|
2020-09-21 07:10:54 +00:00
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
auto res = Insert(segment, offset, N, uids.data(), timestamps.data(), raw_data.data(), (int)line_sizeof, N);
|
2020-09-21 07:10:54 +00:00
|
|
|
|
2020-11-26 07:18:36 +00:00
|
|
|
assert(res == 0);
|
2020-09-21 07:10:54 +00:00
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
auto memory_usage_size = GetMemoryUsageInBytes(segment);
|
2020-09-21 07:10:54 +00:00
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
std::cout << "new_memory_usage_size = " << memory_usage_size << std::endl;
|
2020-09-23 11:51:14 +00:00
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
assert(memory_usage_size == 2785280);
|
2020-09-21 07:10:54 +00:00
|
|
|
|
2020-10-23 10:01:24 +00:00
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
2020-09-21 07:10:54 +00:00
|
|
|
}
|
|
|
|
|
2020-09-15 02:00:00 +00:00
|
|
|
namespace {
|
2020-09-21 02:32:20 +00:00
|
|
|
auto
|
|
|
|
generate_data(int N) {
|
|
|
|
std::vector<char> raw_data;
|
|
|
|
std::vector<uint64_t> timestamps;
|
|
|
|
std::vector<int64_t> uids;
|
|
|
|
std::default_random_engine er(42);
|
|
|
|
std::uniform_real_distribution<> distribution(0.0, 1.0);
|
|
|
|
std::default_random_engine ei(42);
|
|
|
|
for (int i = 0; i < N; ++i) {
|
2020-09-12 08:57:37 +00:00
|
|
|
uids.push_back(10 * N + i);
|
|
|
|
timestamps.push_back(0);
|
|
|
|
// append vec
|
|
|
|
float vec[16];
|
2020-09-21 02:32:20 +00:00
|
|
|
for (auto& x : vec) {
|
|
|
|
x = distribution(er);
|
2020-09-12 08:57:37 +00:00
|
|
|
}
|
2020-10-23 10:01:24 +00:00
|
|
|
raw_data.insert(raw_data.end(), (const char*)std::begin(vec), (const char*)std::end(vec));
|
2020-09-12 08:57:37 +00:00
|
|
|
int age = ei() % 100;
|
2020-10-23 10:01:24 +00:00
|
|
|
raw_data.insert(raw_data.end(), (const char*)&age, ((const char*)&age) + sizeof(age));
|
2020-09-03 11:58:33 +00:00
|
|
|
}
|
2020-09-21 02:32:20 +00:00
|
|
|
return std::make_tuple(raw_data, timestamps, uids);
|
2020-09-15 02:00:00 +00:00
|
|
|
}
|
2020-10-23 10:01:24 +00:00
|
|
|
} // namespace
|
2020-09-10 09:57:33 +00:00
|
|
|
|
2020-11-17 02:07:42 +00:00
|
|
|
// TEST(CApiTest, TestSearchPreference) {
|
|
|
|
// auto schema_tmp_conf = "";
|
|
|
|
// auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
// auto segment = NewSegment(collection, 0);
|
|
|
|
//
|
|
|
|
// auto beg = chrono::high_resolution_clock::now();
|
|
|
|
// auto next = beg;
|
|
|
|
// int N = 1000 * 1000 * 10;
|
|
|
|
// auto [raw_data, timestamps, uids] = generate_data(N);
|
|
|
|
// auto line_sizeof = (sizeof(int) + sizeof(float) * 16);
|
|
|
|
//
|
|
|
|
// next = chrono::high_resolution_clock::now();
|
|
|
|
// std::cout << "generate_data: " << chrono::duration_cast<chrono::milliseconds>(next - beg).count() << "ms"
|
|
|
|
// << std::endl;
|
|
|
|
// beg = next;
|
|
|
|
//
|
|
|
|
// auto offset = PreInsert(segment, N);
|
|
|
|
// auto res = Insert(segment, offset, N, uids.data(), timestamps.data(), raw_data.data(), (int)line_sizeof, N);
|
|
|
|
// assert(res == 0);
|
|
|
|
// next = chrono::high_resolution_clock::now();
|
|
|
|
// std::cout << "insert: " << chrono::duration_cast<chrono::milliseconds>(next - beg).count() << "ms" << std::endl;
|
|
|
|
// beg = next;
|
|
|
|
//
|
|
|
|
// auto N_del = N / 100;
|
|
|
|
// std::vector<uint64_t> del_ts(N_del, 100);
|
|
|
|
// auto pre_off = PreDelete(segment, N_del);
|
|
|
|
// Delete(segment, pre_off, N_del, uids.data(), del_ts.data());
|
|
|
|
//
|
|
|
|
// next = chrono::high_resolution_clock::now();
|
|
|
|
// std::cout << "delete1: " << chrono::duration_cast<chrono::milliseconds>(next - beg).count() << "ms" << std::endl;
|
|
|
|
// beg = next;
|
|
|
|
//
|
|
|
|
// auto row_count = GetRowCount(segment);
|
|
|
|
// assert(row_count == N);
|
|
|
|
//
|
|
|
|
// std::vector<long> result_ids(10 * 16);
|
|
|
|
// std::vector<float> result_distances(10 * 16);
|
|
|
|
//
|
|
|
|
// CQueryInfo queryInfo{1, 10, "fakevec"};
|
|
|
|
// auto sea_res =
|
|
|
|
// Search(segment, queryInfo, 104, (float*)raw_data.data(), 16, result_ids.data(), result_distances.data());
|
|
|
|
//
|
|
|
|
// // ASSERT_EQ(sea_res, 0);
|
|
|
|
// // ASSERT_EQ(result_ids[0], 10 * N);
|
|
|
|
// // ASSERT_EQ(result_distances[0], 0);
|
|
|
|
//
|
|
|
|
// next = chrono::high_resolution_clock::now();
|
|
|
|
// std::cout << "query1: " << chrono::duration_cast<chrono::milliseconds>(next - beg).count() << "ms" << std::endl;
|
|
|
|
// beg = next;
|
|
|
|
// sea_res = Search(segment, queryInfo, 104, (float*)raw_data.data(), 16, result_ids.data(),
|
|
|
|
// result_distances.data());
|
|
|
|
//
|
|
|
|
// // ASSERT_EQ(sea_res, 0);
|
|
|
|
// // ASSERT_EQ(result_ids[0], 10 * N);
|
|
|
|
// // ASSERT_EQ(result_distances[0], 0);
|
|
|
|
//
|
|
|
|
// next = chrono::high_resolution_clock::now();
|
|
|
|
// std::cout << "query2: " << chrono::duration_cast<chrono::milliseconds>(next - beg).count() << "ms" << std::endl;
|
|
|
|
// beg = next;
|
|
|
|
//
|
|
|
|
// // Close(segment);
|
|
|
|
// // BuildIndex(segment);
|
|
|
|
//
|
|
|
|
// next = chrono::high_resolution_clock::now();
|
|
|
|
// std::cout << "build index: " << chrono::duration_cast<chrono::milliseconds>(next - beg).count() << "ms"
|
|
|
|
// << std::endl;
|
|
|
|
// beg = next;
|
|
|
|
//
|
|
|
|
// std::vector<int64_t> result_ids2(10);
|
|
|
|
// std::vector<float> result_distances2(10);
|
|
|
|
//
|
|
|
|
// sea_res =
|
|
|
|
// Search(segment, queryInfo, 104, (float*)raw_data.data(), 16, result_ids2.data(), result_distances2.data());
|
|
|
|
//
|
|
|
|
// // sea_res = Search(segment, nullptr, 104, result_ids2.data(),
|
|
|
|
// // result_distances2.data());
|
|
|
|
//
|
|
|
|
// next = chrono::high_resolution_clock::now();
|
|
|
|
// std::cout << "search10: " << chrono::duration_cast<chrono::milliseconds>(next - beg).count() << "ms" << std::endl;
|
|
|
|
// beg = next;
|
|
|
|
//
|
|
|
|
// sea_res =
|
|
|
|
// Search(segment, queryInfo, 104, (float*)raw_data.data(), 16, result_ids2.data(), result_distances2.data());
|
|
|
|
//
|
|
|
|
// next = chrono::high_resolution_clock::now();
|
|
|
|
// std::cout << "search11: " << chrono::duration_cast<chrono::milliseconds>(next - beg).count() << "ms" << std::endl;
|
|
|
|
// beg = next;
|
|
|
|
//
|
|
|
|
// // std::cout << "case 1" << std::endl;
|
|
|
|
// // for (int i = 0; i < 10; ++i) {
|
|
|
|
// // std::cout << result_ids[i] << "->" << result_distances[i] << std::endl;
|
|
|
|
// // }
|
|
|
|
// // std::cout << "case 2" << std::endl;
|
|
|
|
// // for (int i = 0; i < 10; ++i) {
|
|
|
|
// // std::cout << result_ids2[i] << "->" << result_distances2[i] << std::endl;
|
|
|
|
// // }
|
|
|
|
// //
|
|
|
|
// // for (auto x : result_ids2) {
|
|
|
|
// // ASSERT_GE(x, 10 * N + N_del);
|
|
|
|
// // ASSERT_LT(x, 10 * N + N);
|
|
|
|
// // }
|
|
|
|
//
|
|
|
|
// // auto iter = 0;
|
|
|
|
// // for(int i = 0; i < result_ids.size(); ++i) {
|
|
|
|
// // auto uid = result_ids[i];
|
|
|
|
// // auto dis = result_distances[i];
|
|
|
|
// // if(uid >= 10 * N + N_del) {
|
|
|
|
// // auto uid2 = result_ids2[iter];
|
|
|
|
// // auto dis2 = result_distances2[iter];
|
|
|
|
// // ASSERT_EQ(uid, uid2);
|
|
|
|
// // ASSERT_EQ(dis, dis2);
|
|
|
|
// // ++iter;
|
|
|
|
// // }
|
|
|
|
// // }
|
|
|
|
//
|
|
|
|
// DeleteCollection(collection);
|
|
|
|
// DeleteSegment(segment);
|
|
|
|
//}
|
2020-09-03 11:58:33 +00:00
|
|
|
|
|
|
|
TEST(CApiTest, GetDeletedCountTest) {
|
2020-09-21 10:16:06 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
2020-09-03 11:58:33 +00:00
|
|
|
|
2020-10-31 07:11:47 +00:00
|
|
|
long delete_row_ids[] = {100000, 100001, 100002};
|
2020-09-21 02:32:20 +00:00
|
|
|
unsigned long delete_timestamps[] = {0, 0, 0};
|
2020-09-03 11:58:33 +00:00
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
auto offset = PreDelete(segment, 3);
|
2020-09-12 08:57:37 +00:00
|
|
|
|
2020-10-31 07:11:47 +00:00
|
|
|
auto del_res = Delete(segment, offset, 3, delete_row_ids, delete_timestamps);
|
2020-11-26 07:18:36 +00:00
|
|
|
assert(del_res == 0);
|
2020-09-03 11:58:33 +00:00
|
|
|
|
2020-10-31 07:11:47 +00:00
|
|
|
// TODO: assert(deleted_count == len(delete_row_ids))
|
2020-09-21 02:32:20 +00:00
|
|
|
auto deleted_count = GetDeletedCount(segment);
|
|
|
|
assert(deleted_count == 0);
|
2020-09-03 11:58:33 +00:00
|
|
|
|
2020-09-21 02:32:20 +00:00
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
2020-09-03 11:58:33 +00:00
|
|
|
}
|
2020-09-10 09:57:33 +00:00
|
|
|
|
2020-09-12 08:57:37 +00:00
|
|
|
TEST(CApiTest, GetRowCountTest) {
|
2020-09-21 10:16:06 +00:00
|
|
|
auto schema_tmp_conf = "";
|
2020-11-09 10:07:15 +00:00
|
|
|
auto collection = NewCollection(schema_tmp_conf);
|
|
|
|
auto segment = NewSegment(collection, 0);
|
2020-09-21 02:32:20 +00:00
|
|
|
|
|
|
|
int N = 10000;
|
|
|
|
auto [raw_data, timestamps, uids] = generate_data(N);
|
|
|
|
auto line_sizeof = (sizeof(int) + sizeof(float) * 16);
|
|
|
|
auto offset = PreInsert(segment, N);
|
2020-10-23 10:01:24 +00:00
|
|
|
auto res = Insert(segment, offset, N, uids.data(), timestamps.data(), raw_data.data(), (int)line_sizeof, N);
|
2020-11-26 07:18:36 +00:00
|
|
|
assert(res == 0);
|
2020-09-21 02:32:20 +00:00
|
|
|
|
|
|
|
auto row_count = GetRowCount(segment);
|
|
|
|
assert(row_count == N);
|
|
|
|
|
2020-09-21 10:16:06 +00:00
|
|
|
DeleteCollection(collection);
|
|
|
|
DeleteSegment(segment);
|
|
|
|
}
|
|
|
|
|
2020-11-12 04:18:07 +00:00
|
|
|
// TEST(CApiTest, SchemaTest) {
|
2020-11-09 10:07:15 +00:00
|
|
|
// std::string schema_string =
|
|
|
|
// "id: 6873737669791618215\nname: \"collection0\"\nschema: \u003c\n "
|
|
|
|
// "field_metas: \u003c\n field_name: \"age\"\n type: INT32\n dim: 1\n \u003e\n "
|
|
|
|
// "field_metas: \u003c\n field_name: \"field_1\"\n type: VECTOR_FLOAT\n dim: 16\n \u003e\n"
|
|
|
|
// "\u003e\ncreate_time: 1600416765\nsegment_ids: 6873737669791618215\npartition_tags: \"default\"\n";
|
|
|
|
//
|
|
|
|
// auto collection = NewCollection(schema_string.data());
|
|
|
|
// auto segment = NewSegment(collection, 0);
|
|
|
|
// DeleteCollection(collection);
|
|
|
|
// DeleteSegment(segment);
|
2020-11-19 06:13:39 +00:00
|
|
|
//}
|
|
|
|
|
|
|
|
TEST(CApiTest, MergeInto) {
|
|
|
|
std::vector<int64_t> uids;
|
|
|
|
std::vector<float> distance;
|
|
|
|
|
|
|
|
std::vector<int64_t> new_uids;
|
|
|
|
std::vector<float> new_distance;
|
|
|
|
|
|
|
|
int64_t num_queries = 1;
|
|
|
|
int64_t topk = 2;
|
|
|
|
|
|
|
|
uids.push_back(1);
|
|
|
|
uids.push_back(2);
|
|
|
|
distance.push_back(5);
|
|
|
|
distance.push_back(1000);
|
|
|
|
|
|
|
|
new_uids.push_back(3);
|
|
|
|
new_uids.push_back(4);
|
|
|
|
new_distance.push_back(2);
|
|
|
|
new_distance.push_back(6);
|
|
|
|
|
|
|
|
auto res = MergeInto(num_queries, topk, distance.data(), uids.data(), new_distance.data(), new_uids.data());
|
|
|
|
|
|
|
|
ASSERT_EQ(res, 0);
|
|
|
|
ASSERT_EQ(uids[0], 3);
|
|
|
|
ASSERT_EQ(distance[0], 2);
|
|
|
|
ASSERT_EQ(uids[1], 1);
|
|
|
|
ASSERT_EQ(distance[1], 5);
|
|
|
|
}
|