meta_tests.cpp 11.9 KB
Newer Older
X
Xu Peng 已提交
1 2 3 4 5 6 7
////////////////////////////////////////////////////////////////////////////////
// Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
// Unauthorized copying of this file, via any medium is strictly prohibited.
// Proprietary and confidential.
////////////////////////////////////////////////////////////////////////////////
#include <gtest/gtest.h>
#include <thread>
8
#include "utils/easylogging++.h"
X
Xu Peng 已提交
9 10
#include <stdlib.h>
#include <time.h>
X
Xu Peng 已提交
11 12

#include "utils.h"
G
groot 已提交
13
#include "db/meta/SqliteMetaImpl.h"
X
Xu Peng 已提交
14
#include "db/Utils.h"
G
groot 已提交
15
#include "db/meta/MetaConsts.h"
X
Xu Peng 已提交
16

G
groot 已提交
17
using namespace zilliz::milvus;
J
jinhai 已提交
18
using namespace zilliz::milvus::engine;
X
Xu Peng 已提交
19

G
groot 已提交
20 21
TEST_F(MetaTest, TABLE_TEST) {
    auto table_id = "meta_test_table";
X
Xu Peng 已提交
22

G
groot 已提交
23 24 25
    meta::TableSchema table;
    table.table_id_ = table_id;
    auto status = impl_->CreateTable(table);
X
Xu Peng 已提交
26 27
    ASSERT_TRUE(status.ok());

G
groot 已提交
28 29 30
    auto gid = table.id_;
    table.id_ = -1;
    status = impl_->DescribeTable(table);
X
Xu Peng 已提交
31
    ASSERT_TRUE(status.ok());
G
groot 已提交
32 33
    ASSERT_EQ(table.id_, gid);
    ASSERT_EQ(table.table_id_, table_id);
X
Xu Peng 已提交
34

G
groot 已提交
35 36
    table.table_id_ = "not_found";
    status = impl_->DescribeTable(table);
X
Xu Peng 已提交
37 38
    ASSERT_TRUE(!status.ok());

G
groot 已提交
39 40
    table.table_id_ = table_id;
    status = impl_->CreateTable(table);
G
groot 已提交
41
    ASSERT_EQ(status.code(), DB_ALREADY_EXIST);
G
groot 已提交
42 43 44 45

    table.table_id_ = "";
    status = impl_->CreateTable(table);
    ASSERT_TRUE(status.ok());
X
Xu Peng 已提交
46
}
X
Xu Peng 已提交
47

G
groot 已提交
48 49
TEST_F(MetaTest, TABLE_FILE_TEST) {
    auto table_id = "meta_test_table";
X
Xu Peng 已提交
50

G
groot 已提交
51 52
    meta::TableSchema table;
    table.table_id_ = table_id;
G
groot 已提交
53
    table.dimension_ = 256;
G
groot 已提交
54
    auto status = impl_->CreateTable(table);
X
Xu Peng 已提交
55

X
Xu Peng 已提交
56
    meta::TableFileSchema table_file;
G
groot 已提交
57
    table_file.table_id_ = table.table_id_;
X
Xu Peng 已提交
58
    status = impl_->CreateTableFile(table_file);
X
Xu Peng 已提交
59
    ASSERT_TRUE(status.ok());
G
groot 已提交
60
    ASSERT_EQ(table_file.file_type_, meta::TableFileSchema::NEW);
X
Xu Peng 已提交
61

G
groot 已提交
62 63 64 65 66
    uint64_t cnt = 0;
    status = impl_->Count(table_id, cnt);
    ASSERT_TRUE(status.ok());
    ASSERT_EQ(cnt, 0UL);

G
groot 已提交
67
    auto file_id = table_file.file_id_;
X
Xu Peng 已提交
68

69
    auto new_file_type = meta::TableFileSchema::INDEX;
G
groot 已提交
70
    table_file.file_type_ = new_file_type;
X
Xu Peng 已提交
71

X
Xu Peng 已提交
72
    status = impl_->UpdateTableFile(table_file);
X
Xu Peng 已提交
73
    ASSERT_TRUE(status.ok());
G
groot 已提交
74
    ASSERT_EQ(table_file.file_type_, new_file_type);
X
Xu Peng 已提交
75

X
Xu Peng 已提交
76
    meta::DatesT dates;
77
    dates.push_back(utils::GetDate());
G
groot 已提交
78
    status = impl_->DropPartitionsByDates(table_file.table_id_, dates);
79
    ASSERT_TRUE(status.ok());
X
Xu Peng 已提交
80

X
Xu Peng 已提交
81 82
    dates.clear();
    for (auto i=2; i < 10; ++i) {
83
        dates.push_back(utils::GetDateWithDelta(-1*i));
X
Xu Peng 已提交
84
    }
G
groot 已提交
85
    status = impl_->DropPartitionsByDates(table_file.table_id_, dates);
X
Xu Peng 已提交
86 87
    ASSERT_TRUE(status.ok());

88
    table_file.date_ = utils::GetDateWithDelta(-2);
X
Xu Peng 已提交
89
    status = impl_->UpdateTableFile(table_file);
X
Xu Peng 已提交
90
    ASSERT_TRUE(status.ok());
91
    ASSERT_EQ(table_file.date_, utils::GetDateWithDelta(-2));
G
groot 已提交
92
    ASSERT_FALSE(table_file.file_type_ == meta::TableFileSchema::TO_DELETE);
X
Xu Peng 已提交
93 94

    dates.clear();
G
groot 已提交
95 96
    dates.push_back(table_file.date_);
    status = impl_->DropPartitionsByDates(table_file.table_id_, dates);
X
Xu Peng 已提交
97
    ASSERT_TRUE(status.ok());
98 99 100 101

    std::vector<size_t> ids = {table_file.id_};
    meta::TableFilesSchema files;
    status = impl_->GetTableFiles(table_file.table_id_, ids, files);
X
Xu Peng 已提交
102
    ASSERT_TRUE(status.ok());
G
groot 已提交
103
    ASSERT_EQ(files.size(), 0UL);
X
Xu Peng 已提交
104
}
X
Xu Peng 已提交
105

X
Xu Peng 已提交
106 107 108
TEST_F(MetaTest, ARCHIVE_TEST_DAYS) {
    srand(time(0));
    DBMetaOptions options;
G
groot 已提交
109
    options.path = "/tmp/milvus_test";
X
Xu Peng 已提交
110 111 112 113 114
    int days_num = rand() % 100;
    std::stringstream ss;
    ss << "days:" << days_num;
    options.archive_conf = ArchiveConf("delete", ss.str());

G
groot 已提交
115
    meta::SqliteMetaImpl impl(options);
G
groot 已提交
116
    auto table_id = "meta_test_table";
X
Xu Peng 已提交
117

G
groot 已提交
118 119 120
    meta::TableSchema table;
    table.table_id_ = table_id;
    auto status = impl.CreateTable(table);
X
Xu Peng 已提交
121

122
    meta::TableFilesSchema files;
X
Xu Peng 已提交
123
    meta::TableFileSchema table_file;
G
groot 已提交
124
    table_file.table_id_ = table.table_id_;
X
Xu Peng 已提交
125 126 127 128

    auto cnt = 100;
    long ts = utils::GetMicroSecTimeStamp();
    std::vector<int> days;
129
    std::vector<size_t> ids;
X
Xu Peng 已提交
130
    for (auto i=0; i<cnt; ++i) {
X
Xu Peng 已提交
131
        status = impl.CreateTableFile(table_file);
G
groot 已提交
132
        table_file.file_type_ = meta::TableFileSchema::NEW;
X
Xu Peng 已提交
133
        int day = rand() % (days_num*2);
G
groot 已提交
134
        table_file.created_on_ = ts - day*meta::D_SEC*meta::US_PS - 10000;
X
Xu Peng 已提交
135
        status = impl.UpdateTableFile(table_file);
X
Xu Peng 已提交
136
        files.push_back(table_file);
X
Xu Peng 已提交
137
        days.push_back(day);
138
        ids.push_back(table_file.id_);
X
Xu Peng 已提交
139 140
    }

X
Xu Peng 已提交
141
    impl.Archive();
X
Xu Peng 已提交
142 143
    int i = 0;

144 145 146 147 148
    meta::TableFilesSchema files_get;
    status = impl.GetTableFiles(table_file.table_id_, ids, files_get);
    ASSERT_TRUE(status.ok());

    for(auto& file : files_get) {
X
Xu Peng 已提交
149
        if (days[i] < days_num) {
G
groot 已提交
150
            ASSERT_EQ(file.file_type_, meta::TableFileSchema::NEW);
X
Xu Peng 已提交
151 152 153 154
        }
        i++;
    }

155
    impl.DropAll();
X
Xu Peng 已提交
156 157 158
}

TEST_F(MetaTest, ARCHIVE_TEST_DISK) {
X
Xu Peng 已提交
159
    DBMetaOptions options;
G
groot 已提交
160
    options.path = "/tmp/milvus_test";
X
Xu Peng 已提交
161
    options.archive_conf = ArchiveConf("delete", "disk:11");
X
Xu Peng 已提交
162

G
groot 已提交
163
    meta::SqliteMetaImpl impl(options);
164
    auto table_id = "meta_test_group";
X
Xu Peng 已提交
165

G
groot 已提交
166 167 168
    meta::TableSchema table;
    table.table_id_ = table_id;
    auto status = impl.CreateTable(table);
X
Xu Peng 已提交
169

170
    meta::TableFilesSchema files;
X
Xu Peng 已提交
171
    meta::TableFileSchema table_file;
G
groot 已提交
172
    table_file.table_id_ = table.table_id_;
X
Xu Peng 已提交
173 174 175

    auto cnt = 10;
    auto each_size = 2UL;
176
    std::vector<size_t> ids;
X
Xu Peng 已提交
177
    for (auto i=0; i<cnt; ++i) {
X
Xu Peng 已提交
178
        status = impl.CreateTableFile(table_file);
G
groot 已提交
179
        table_file.file_type_ = meta::TableFileSchema::NEW;
180
        table_file.file_size_ = each_size * meta::G;
X
Xu Peng 已提交
181
        status = impl.UpdateTableFile(table_file);
X
Xu Peng 已提交
182
        files.push_back(table_file);
183
        ids.push_back(table_file.id_);
X
Xu Peng 已提交
184 185
    }

X
Xu Peng 已提交
186
    impl.Archive();
X
Xu Peng 已提交
187 188
    int i = 0;

189 190 191 192 193
    meta::TableFilesSchema files_get;
    status = impl.GetTableFiles(table_file.table_id_, ids, files_get);
    ASSERT_TRUE(status.ok());

    for(auto& file : files_get) {
G
groot 已提交
194
        if (i >= 5) {
G
groot 已提交
195
            ASSERT_EQ(file.file_type_, meta::TableFileSchema::NEW);
X
Xu Peng 已提交
196 197 198 199
        }
        ++i;
    }

200
    impl.DropAll();
X
Xu Peng 已提交
201 202
}

X
Xu Peng 已提交
203
TEST_F(MetaTest, TABLE_FILES_TEST) {
204
    auto table_id = "meta_test_group";
X
Xu Peng 已提交
205

G
groot 已提交
206 207 208
    meta::TableSchema table;
    table.table_id_ = table_id;
    auto status = impl_->CreateTable(table);
X
Xu Peng 已提交
209

G
groot 已提交
210 211 212 213 214 215 216
    uint64_t new_merge_files_cnt = 1;
    uint64_t new_index_files_cnt = 2;
    uint64_t backup_files_cnt = 3;
    uint64_t new_files_cnt = 4;
    uint64_t raw_files_cnt = 5;
    uint64_t to_index_files_cnt = 6;
    uint64_t index_files_cnt = 7;
X
Xu Peng 已提交
217

X
Xu Peng 已提交
218
    meta::TableFileSchema table_file;
G
groot 已提交
219
    table_file.table_id_ = table.table_id_;
X
Xu Peng 已提交
220

G
groot 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
    for (auto i=0; i<new_merge_files_cnt; ++i) {
        status = impl_->CreateTableFile(table_file);
        table_file.file_type_ = meta::TableFileSchema::NEW_MERGE;
        status = impl_->UpdateTableFile(table_file);
    }

    for (auto i=0; i<new_index_files_cnt; ++i) {
        status = impl_->CreateTableFile(table_file);
        table_file.file_type_ = meta::TableFileSchema::NEW_INDEX;
        status = impl_->UpdateTableFile(table_file);
    }

    for (auto i=0; i<backup_files_cnt; ++i) {
        status = impl_->CreateTableFile(table_file);
        table_file.file_type_ = meta::TableFileSchema::BACKUP;
        table_file.row_count_ = 1;
        status = impl_->UpdateTableFile(table_file);
    }

X
Xu Peng 已提交
240
    for (auto i=0; i<new_files_cnt; ++i) {
X
Xu Peng 已提交
241
        status = impl_->CreateTableFile(table_file);
G
groot 已提交
242
        table_file.file_type_ = meta::TableFileSchema::NEW;
X
Xu Peng 已提交
243
        status = impl_->UpdateTableFile(table_file);
X
Xu Peng 已提交
244 245 246
    }

    for (auto i=0; i<raw_files_cnt; ++i) {
X
Xu Peng 已提交
247
        status = impl_->CreateTableFile(table_file);
G
groot 已提交
248
        table_file.file_type_ = meta::TableFileSchema::RAW;
G
groot 已提交
249
        table_file.row_count_ = 1;
X
Xu Peng 已提交
250
        status = impl_->UpdateTableFile(table_file);
X
Xu Peng 已提交
251 252 253
    }

    for (auto i=0; i<to_index_files_cnt; ++i) {
X
Xu Peng 已提交
254
        status = impl_->CreateTableFile(table_file);
G
groot 已提交
255
        table_file.file_type_ = meta::TableFileSchema::TO_INDEX;
G
groot 已提交
256
        table_file.row_count_ = 1;
X
Xu Peng 已提交
257
        status = impl_->UpdateTableFile(table_file);
X
Xu Peng 已提交
258 259 260
    }

    for (auto i=0; i<index_files_cnt; ++i) {
X
Xu Peng 已提交
261
        status = impl_->CreateTableFile(table_file);
G
groot 已提交
262
        table_file.file_type_ = meta::TableFileSchema::INDEX;
G
groot 已提交
263
        table_file.row_count_ = 1;
X
Xu Peng 已提交
264
        status = impl_->UpdateTableFile(table_file);
X
Xu Peng 已提交
265 266
    }

G
groot 已提交
267 268 269 270
    uint64_t total_row_count = 0;
    status = impl_->Count(table_id, total_row_count);
    ASSERT_TRUE(status.ok());
    ASSERT_EQ(total_row_count, raw_files_cnt+to_index_files_cnt+index_files_cnt);
X
Xu Peng 已提交
271

G
groot 已提交
272
    meta::TableFilesSchema files;
X
Xu Peng 已提交
273
    status = impl_->FilesToIndex(files);
X
Xu Peng 已提交
274 275
    ASSERT_EQ(files.size(), to_index_files_cnt);

276
    meta::DatePartionedTableFilesSchema dated_files;
G
groot 已提交
277
    status = impl_->FilesToMerge(table.table_id_, dated_files);
G
groot 已提交
278
    ASSERT_EQ(dated_files[table_file.date_].size(), raw_files_cnt);
X
Xu Peng 已提交
279

X
Xu Peng 已提交
280
    status = impl_->FilesToIndex(files);
X
Xu Peng 已提交
281 282
    ASSERT_EQ(files.size(), to_index_files_cnt);

G
groot 已提交
283
    meta::DatesT dates = {table_file.date_};
284 285
    std::vector<size_t> ids;
    status = impl_->FilesToSearch(table_id, ids, dates, dated_files);
G
groot 已提交
286
    ASSERT_EQ(dated_files[table_file.date_].size(),
X
Xu Peng 已提交
287
            to_index_files_cnt+raw_files_cnt+index_files_cnt);
G
groot 已提交
288

289
    status = impl_->FilesToSearch(table_id, ids, meta::DatesT(), dated_files);
G
groot 已提交
290 291
    ASSERT_EQ(dated_files[table_file.date_].size(),
              to_index_files_cnt+raw_files_cnt+index_files_cnt);
X
xj.lin 已提交
292 293 294 295 296 297 298 299

    status = impl_->FilesToSearch(table_id, ids, meta::DatesT(), dated_files);
    ASSERT_EQ(dated_files[table_file.date_].size(),
              to_index_files_cnt+raw_files_cnt+index_files_cnt);

    ids.push_back(size_t(9999999999));
    status = impl_->FilesToSearch(table_id, ids, dates, dated_files);
    ASSERT_EQ(dated_files[table_file.date_].size(),0);
G
groot 已提交
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325

    std::vector<int> file_types;
    std::vector<std::string> file_ids;
    status = impl_->FilesByType(table.table_id_, file_types, file_ids);
    ASSERT_TRUE(file_ids.empty());
    ASSERT_FALSE(status.ok());

    file_types = {
            meta::TableFileSchema::NEW,
            meta::TableFileSchema::NEW_MERGE,
            meta::TableFileSchema::NEW_INDEX,
            meta::TableFileSchema::TO_INDEX,
            meta::TableFileSchema::INDEX,
            meta::TableFileSchema::RAW,
            meta::TableFileSchema::BACKUP,
    };
    status = impl_->FilesByType(table.table_id_, file_types, file_ids);
    ASSERT_TRUE(status.ok());
    uint64_t total_cnt = new_index_files_cnt + new_merge_files_cnt +
                         backup_files_cnt + new_files_cnt + raw_files_cnt +
                         to_index_files_cnt + index_files_cnt;
    ASSERT_EQ(file_ids.size(), total_cnt);

    status = impl_->DeleteTableFiles(table_id);
    ASSERT_TRUE(status.ok());

G
groot 已提交
326 327 328 329 330 331
    status = impl_->CreateTableFile(table_file);
    table_file.file_type_ = meta::TableFileSchema::NEW;
    status = impl_->UpdateTableFile(table_file);
    status = impl_->CleanUp();
    ASSERT_TRUE(status.ok());

G
groot 已提交
332 333 334 335 336
    status = impl_->DeleteTable(table_id);
    ASSERT_TRUE(status.ok());

    status = impl_->CleanUpFilesWithTTL(1UL);
    ASSERT_TRUE(status.ok());
X
Xu Peng 已提交
337
}
G
groot 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377

TEST_F(MetaTest, INDEX_TEST) {
    auto table_id = "index_test";

    meta::TableSchema table;
    table.table_id_ = table_id;
    auto status = impl_->CreateTable(table);

    TableIndex index;
    index.metric_type_ = 2;
    index.nlist_ = 1234;
    index.engine_type_ = 3;
    status = impl_->UpdateTableIndex(table_id, index);
    ASSERT_TRUE(status.ok());

    int64_t flag = 65536;
    status = impl_->UpdateTableFlag(table_id, flag);
    ASSERT_TRUE(status.ok());

    engine::meta::TableSchema table_info;
    table_info.table_id_ = table_id;
    status = impl_->DescribeTable(table_info);
    ASSERT_EQ(table_info.flag_, flag);

    TableIndex index_out;
    status = impl_->DescribeTableIndex(table_id, index_out);
    ASSERT_EQ(index_out.metric_type_, index.metric_type_);
    ASSERT_EQ(index_out.nlist_, index.nlist_);
    ASSERT_EQ(index_out.engine_type_, index.engine_type_);

    status = impl_->DropTableIndex(table_id);
    ASSERT_TRUE(status.ok());
    status = impl_->DescribeTableIndex(table_id, index_out);
    ASSERT_NE(index_out.metric_type_, index.metric_type_);
    ASSERT_NE(index_out.nlist_, index.nlist_);
    ASSERT_NE(index_out.engine_type_, index.engine_type_);

    status = impl_->UpdateTableFilesToIndex(table_id);
    ASSERT_TRUE(status.ok());
}