GrpcRequestTask.cpp 34.8 KB
Newer Older
K
kun yu 已提交
1
/*******************************************************************************
Y
Yu Kun 已提交
2 3 4 5
* Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited.
* Proprietary and confidential.
******************************************************************************/
Y
Yu Kun 已提交
6
#include "GrpcRequestTask.h"
K
kun yu 已提交
7
#include "../ServerConfig.h"
K
kun yu 已提交
8 9 10 11
#include "utils/CommonUtil.h"
#include "utils/Log.h"
#include "utils/TimeRecorder.h"
#include "utils/ValidationUtil.h"
K
kun yu 已提交
12
#include "../DBWrapper.h"
K
kun yu 已提交
13
#include "version.h"
Y
Yu Kun 已提交
14
#include "GrpcMilvusServer.h"
S
starlord 已提交
15
#include "db/Utils.h"
K
kun yu 已提交
16

K
kun yu 已提交
17
#include "src/server/Server.h"
K
kun yu 已提交
18

S
starlord 已提交
19 20
#include <string.h>

K
kun yu 已提交
21 22 23
namespace zilliz {
namespace milvus {
namespace server {
Y
Yu Kun 已提交
24 25 26 27 28
namespace grpc {

static const char *DQL_TASK_GROUP = "dql";
static const char *DDL_DML_TASK_GROUP = "ddl_dml";
static const char *PING_TASK_GROUP = "ping";
K
kun yu 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41

using DB_META = zilliz::milvus::engine::meta::Meta;
using DB_DATE = zilliz::milvus::engine::meta::DateT;

namespace {
    engine::EngineType EngineType(int type) {
        static std::map<int, engine::EngineType> map_type = {
                {0, engine::EngineType::INVALID},
                {1, engine::EngineType::FAISS_IDMAP},
                {2, engine::EngineType::FAISS_IVFFLAT},
                {3, engine::EngineType::FAISS_IVFSQ8},
        };

Y
Yu Kun 已提交
42
        if (map_type.find(type) == map_type.end()) {
K
kun yu 已提交
43 44 45 46 47 48 49 50
            return engine::EngineType::INVALID;
        }

        return map_type[type];
    }

    int IndexType(engine::EngineType type) {
        static std::map<engine::EngineType, int> map_type = {
Y
Yu Kun 已提交
51 52
                {engine::EngineType::INVALID,       0},
                {engine::EngineType::FAISS_IDMAP,   1},
K
kun yu 已提交
53
                {engine::EngineType::FAISS_IVFFLAT, 2},
Y
Yu Kun 已提交
54
                {engine::EngineType::FAISS_IVFSQ8,  3},
K
kun yu 已提交
55 56
        };

Y
Yu Kun 已提交
57
        if (map_type.find(type) == map_type.end()) {
K
kun yu 已提交
58 59 60 61 62 63
            return 0;
        }

        return map_type[type];
    }

K
kun yu 已提交
64
    constexpr long DAY_SECONDS = 24 * 60 * 60;
K
kun yu 已提交
65 66 67

    void
    ConvertTimeRangeToDBDates(const std::vector<::milvus::grpc::Range> &range_array,
Y
Yu Kun 已提交
68 69 70
                              std::vector<DB_DATE> &dates,
                              ServerError &error_code,
                              std::string &error_msg) {
K
kun yu 已提交
71
        dates.clear();
Y
Yu Kun 已提交
72
        for (auto &range : range_array) {
K
kun yu 已提交
73 74
            time_t tt_start, tt_end;
            tm tm_start, tm_end;
Y
Yu Kun 已提交
75
            if (!CommonUtil::TimeStrToTime(range.start_value(), tt_start, tm_start)) {
K
kun yu 已提交
76 77 78 79 80
                error_code = SERVER_INVALID_TIME_RANGE;
                error_msg = "Invalid time range: " + range.start_value();
                return;
            }

Y
Yu Kun 已提交
81
            if (!CommonUtil::TimeStrToTime(range.end_value(), tt_end, tm_end)) {
K
kun yu 已提交
82 83 84 85 86
                error_code = SERVER_INVALID_TIME_RANGE;
                error_msg = "Invalid time range: " + range.start_value();
                return;
            }

Y
Yu Kun 已提交
87 88 89
            long days = (tt_end > tt_start) ? (tt_end - tt_start) / DAY_SECONDS : (tt_start - tt_end) /
                                                                                  DAY_SECONDS;
            if (days == 0) {
K
kun yu 已提交
90 91
                error_code = SERVER_INVALID_TIME_RANGE;
                error_msg = "Invalid time range: " + range.start_value() + " to " + range.end_value();
Y
Yu Kun 已提交
92
                return;
K
kun yu 已提交
93 94
            }

Y
Yu Kun 已提交
95 96
            for (long i = 0; i < days; i++) {
                time_t tt_day = tt_start + DAY_SECONDS * i;
K
kun yu 已提交
97 98 99
                tm tm_day;
                CommonUtil::ConvertTime(tt_day, tm_day);

Y
Yu Kun 已提交
100 101
                long date = tm_day.tm_year * 10000 + tm_day.tm_mon * 100 +
                            tm_day.tm_mday;//according to db logic
K
kun yu 已提交
102 103 104 105 106 107 108
                dates.push_back(date);
            }
        }
    }
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
109
CreateTableTask::CreateTableTask(const ::milvus::grpc::TableSchema &schema)
Y
Yu Kun 已提交
110
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
K
kun yu 已提交
111 112 113 114
          schema_(schema) {

}

Y
Yu Kun 已提交
115
BaseTaskPtr
Y
Yu Kun 已提交
116
CreateTableTask::Create(const ::milvus::grpc::TableSchema &schema) {
Y
Yu Kun 已提交
117
    return std::shared_ptr<GrpcBaseTask>(new CreateTableTask(schema));
K
kun yu 已提交
118 119
}

Y
Yu Kun 已提交
120 121
ServerError
CreateTableTask::OnExecute() {
K
kun yu 已提交
122 123 124 125
    TimeRecorder rc("CreateTableTask");

    try {
        //step 1: check arguments
K
kun yu 已提交
126
        ServerError res = ValidationUtil::ValidateTableName(schema_.table_name().table_name());
Y
Yu Kun 已提交
127
        if (res != SERVER_SUCCESS) {
K
kun yu 已提交
128 129 130
            return SetError(res, "Invalid table name: " + schema_.table_name().table_name());
        }

K
kun yu 已提交
131
        res = ValidationUtil::ValidateTableDimension(schema_.dimension());
Y
Yu Kun 已提交
132
        if (res != SERVER_SUCCESS) {
K
kun yu 已提交
133 134 135 136 137
            return SetError(res, "Invalid table dimension: " + std::to_string(schema_.dimension()));
        }

        //step 2: construct table schema
        engine::meta::TableSchema table_info;
Y
Yu Kun 已提交
138
        table_info.dimension_ = (uint16_t) schema_.dimension();
K
kun yu 已提交
139 140 141 142
        table_info.table_id_ = schema_.table_name().table_name();

        //step 3: create table
        engine::Status stat = DBWrapper::DB()->CreateTable(table_info);
Y
Yu Kun 已提交
143
        if (!stat.ok()) {
K
kun yu 已提交
144
            //table could exist
K
kun yu 已提交
145 146 147
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

Y
Yu Kun 已提交
148
    } catch (std::exception &ex) {
K
kun yu 已提交
149 150 151
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

K
kun yu 已提交
152
    rc.ElapseFromBegin("totally cost");
K
kun yu 已提交
153 154 155 156 157

    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
158
DescribeTableTask::DescribeTableTask(const std::string &table_name, ::milvus::grpc::TableSchema &schema)
Y
Yu Kun 已提交
159
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
K
kun yu 已提交
160 161 162 163
          table_name_(table_name),
          schema_(schema) {
}

Y
Yu Kun 已提交
164
BaseTaskPtr
Y
Yu Kun 已提交
165
DescribeTableTask::Create(const std::string &table_name, ::milvus::grpc::TableSchema &schema) {
Y
Yu Kun 已提交
166
    return std::shared_ptr<GrpcBaseTask>(new DescribeTableTask(table_name, schema));
K
kun yu 已提交
167 168
}

Y
Yu Kun 已提交
169 170
ServerError
DescribeTableTask::OnExecute() {
K
kun yu 已提交
171 172 173 174
    TimeRecorder rc("DescribeTableTask");

    try {
        //step 1: check arguments
K
kun yu 已提交
175
        ServerError res = ValidationUtil::ValidateTableName(table_name_);
Y
Yu Kun 已提交
176
        if (res != SERVER_SUCCESS) {
K
kun yu 已提交
177 178 179 180 181 182 183
            return SetError(res, "Invalid table name: " + table_name_);
        }

        //step 2: get table info
        engine::meta::TableSchema table_info;
        table_info.table_id_ = table_name_;
        engine::Status stat = DBWrapper::DB()->DescribeTable(table_info);
Y
Yu Kun 已提交
184
        if (!stat.ok()) {
K
kun yu 已提交
185 186 187
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

K
kun yu 已提交
188 189
        schema_.mutable_table_name()->set_table_name(table_info.table_id_);
        schema_.set_dimension(table_info.dimension_);
K
kun yu 已提交
190

Y
Yu Kun 已提交
191
    } catch (std::exception &ex) {
K
kun yu 已提交
192 193 194
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

K
kun yu 已提交
195
    rc.ElapseFromBegin("totally cost");
K
kun yu 已提交
196 197 198 199 200

    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
201
CreateIndexTask::CreateIndexTask(const ::milvus::grpc::IndexParam &index_param)
Y
Yu Kun 已提交
202
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
Y
Yu Kun 已提交
203
          index_param_(index_param) {
K
kun yu 已提交
204 205
}

Y
Yu Kun 已提交
206
BaseTaskPtr
Y
Yu Kun 已提交
207 208
CreateIndexTask::Create(const ::milvus::grpc::IndexParam &index_param) {
    return std::shared_ptr<GrpcBaseTask>(new CreateIndexTask(index_param));
K
kun yu 已提交
209 210
}

Y
Yu Kun 已提交
211
ServerError
Y
Yu Kun 已提交
212
CreateIndexTask::OnExecute() {
K
kun yu 已提交
213
    try {
Y
Yu Kun 已提交
214
        TimeRecorder rc("CreateIndexTask");
K
kun yu 已提交
215 216

        //step 1: check arguments
Y
Yu Kun 已提交
217
        std::string table_name_ = index_param_.table_name().table_name();
K
kun yu 已提交
218
        ServerError res = ValidationUtil::ValidateTableName(table_name_);
Y
Yu Kun 已提交
219
        if (res != SERVER_SUCCESS) {
K
kun yu 已提交
220 221 222 223 224
            return SetError(res, "Invalid table name: " + table_name_);
        }

        bool has_table = false;
        engine::Status stat = DBWrapper::DB()->HasTable(table_name_, has_table);
Y
Yu Kun 已提交
225
        if (!stat.ok()) {
K
kun yu 已提交
226 227 228
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

Y
Yu Kun 已提交
229
        if (!has_table) {
K
kun yu 已提交
230 231 232
            return SetError(SERVER_TABLE_NOT_EXIST, "Table " + table_name_ + " not exists");
        }

S
starlord 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
        res = ValidationUtil::ValidateTableIndexType(index_param_.mutable_index()->index_type());
        if(res != SERVER_SUCCESS) {
            return SetError(res, "Invalid index type: " + std::to_string(index_param_.mutable_index()->index_type()));
        }

        res = ValidationUtil::ValidateTableIndexNlist(index_param_.mutable_index()->nlist());
        if(res != SERVER_SUCCESS) {
            return SetError(res, "Invalid index nlist: " + std::to_string(index_param_.mutable_index()->nlist()));
        }

        res = ValidationUtil::ValidateTableIndexMetricType(index_param_.mutable_index()->metric_type());
        if(res != SERVER_SUCCESS) {
            return SetError(res, "Invalid index metric type: " + std::to_string(index_param_.mutable_index()->metric_type()));
        }

        res = ValidationUtil::ValidateTableIndexFileSize(index_param_.mutable_index()->index_file_size());
        if(res != SERVER_SUCCESS) {
            return SetError(res, "Invalid index file size: " + std::to_string(index_param_.mutable_index()->index_file_size()));
        }

K
kun yu 已提交
253
        //step 2: check table existence
254 255
        engine::TableIndex index;
        index.engine_type_ = index_param_.mutable_index()->index_type();
S
starlord 已提交
256 257 258
        index.nlist_ = index_param_.mutable_index()->nlist();
        index.index_file_size_ = index_param_.mutable_index()->index_file_size();
        index.metric_type_ = index_param_.mutable_index()->metric_type();
259
        stat = DBWrapper::DB()->CreateIndex(table_name_, index);
Y
Yu Kun 已提交
260
        if (!stat.ok()) {
K
kun yu 已提交
261 262 263
            return SetError(SERVER_BUILD_INDEX_ERROR, "Engine failed: " + stat.ToString());
        }

K
kun yu 已提交
264
        rc.ElapseFromBegin("totally cost");
Y
Yu Kun 已提交
265
    } catch (std::exception &ex) {
K
kun yu 已提交
266 267 268 269 270 271 272
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
273
HasTableTask::HasTableTask(const std::string &table_name, bool &has_table)
Y
Yu Kun 已提交
274
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
K
kun yu 已提交
275 276 277 278 279
          table_name_(table_name),
          has_table_(has_table) {

}

Y
Yu Kun 已提交
280
BaseTaskPtr
Y
Yu Kun 已提交
281
HasTableTask::Create(const std::string &table_name, bool &has_table) {
Y
Yu Kun 已提交
282
    return std::shared_ptr<GrpcBaseTask>(new HasTableTask(table_name, has_table));
K
kun yu 已提交
283 284
}

Y
Yu Kun 已提交
285 286
ServerError
HasTableTask::OnExecute() {
K
kun yu 已提交
287 288 289 290
    try {
        TimeRecorder rc("HasTableTask");

        //step 1: check arguments
K
kun yu 已提交
291
        ServerError res = ValidationUtil::ValidateTableName(table_name_);
Y
Yu Kun 已提交
292
        if (res != SERVER_SUCCESS) {
K
kun yu 已提交
293 294 295 296 297
            return SetError(res, "Invalid table name: " + table_name_);
        }

        //step 2: check table existence
        engine::Status stat = DBWrapper::DB()->HasTable(table_name_, has_table_);
Y
Yu Kun 已提交
298
        if (!stat.ok()) {
K
kun yu 已提交
299 300 301
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

K
kun yu 已提交
302
        rc.ElapseFromBegin("totally cost");
Y
Yu Kun 已提交
303
    } catch (std::exception &ex) {
K
kun yu 已提交
304 305 306 307 308 309 310
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
311
DropTableTask::DropTableTask(const std::string &table_name)
Y
Yu Kun 已提交
312
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
K
kun yu 已提交
313 314 315 316
          table_name_(table_name) {

}

Y
Yu Kun 已提交
317
BaseTaskPtr
Y
Yu Kun 已提交
318
DropTableTask::Create(const std::string &table_name) {
Y
Yu Kun 已提交
319
    return std::shared_ptr<GrpcBaseTask>(new DropTableTask(table_name));
K
kun yu 已提交
320 321
}

Y
Yu Kun 已提交
322 323
ServerError
DropTableTask::OnExecute() {
K
kun yu 已提交
324 325 326 327
    try {
        TimeRecorder rc("DropTableTask");

        //step 1: check arguments
K
kun yu 已提交
328
        ServerError res = ValidationUtil::ValidateTableName(table_name_);
Y
Yu Kun 已提交
329
        if (res != SERVER_SUCCESS) {
K
kun yu 已提交
330 331 332 333 334 335 336
            return SetError(res, "Invalid table name: " + table_name_);
        }

        //step 2: check table existence
        engine::meta::TableSchema table_info;
        table_info.table_id_ = table_name_;
        engine::Status stat = DBWrapper::DB()->DescribeTable(table_info);
Y
Yu Kun 已提交
337 338
        if (!stat.ok()) {
            if (stat.IsNotFound()) {
K
kun yu 已提交
339 340 341 342 343 344
                return SetError(SERVER_TABLE_NOT_EXIST, "Table " + table_name_ + " not exists");
            } else {
                return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
            }
        }

K
kun yu 已提交
345
        rc.ElapseFromBegin("check validation");
K
kun yu 已提交
346 347 348 349

        //step 3: Drop table
        std::vector<DB_DATE> dates;
        stat = DBWrapper::DB()->DeleteTable(table_name_, dates);
Y
Yu Kun 已提交
350
        if (!stat.ok()) {
K
kun yu 已提交
351 352 353
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

K
kun yu 已提交
354
        rc.ElapseFromBegin("total cost");
Y
Yu Kun 已提交
355
    } catch (std::exception &ex) {
K
kun yu 已提交
356 357 358 359 360 361 362
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
363
ShowTablesTask::ShowTablesTask(::grpc::ServerWriter<::milvus::grpc::TableName> &writer)
Y
Yu Kun 已提交
364
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
K
kun yu 已提交
365 366 367 368
          writer_(writer) {

}

Y
Yu Kun 已提交
369
BaseTaskPtr
Y
Yu Kun 已提交
370
ShowTablesTask::Create(::grpc::ServerWriter<::milvus::grpc::TableName> &writer) {
Y
Yu Kun 已提交
371
    return std::shared_ptr<GrpcBaseTask>(new ShowTablesTask(writer));
K
kun yu 已提交
372 373
}

Y
Yu Kun 已提交
374 375
ServerError
ShowTablesTask::OnExecute() {
K
kun yu 已提交
376 377
    std::vector<engine::meta::TableSchema> schema_array;
    engine::Status stat = DBWrapper::DB()->AllTables(schema_array);
Y
Yu Kun 已提交
378
    if (!stat.ok()) {
K
kun yu 已提交
379 380 381
        return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
    }

Y
Yu Kun 已提交
382
    for (auto &schema : schema_array) {
K
kun yu 已提交
383 384
        ::milvus::grpc::TableName tableName;
        tableName.set_table_name(schema.table_id_);
K
kun yu 已提交
385 386 387
        if (!writer_.Write(tableName)) {
            return SetError(SERVER_WRITE_ERROR, "Write table name failed!");
        }
K
kun yu 已提交
388 389 390 391 392
    }
    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
393
InsertTask::InsertTask(const ::milvus::grpc::InsertParam &insert_param,
Y
Yu Kun 已提交
394
                                   ::milvus::grpc::VectorIds &record_ids)
Y
Yu Kun 已提交
395
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
Y
Yu Kun 已提交
396
          insert_param_(insert_param),
K
kun yu 已提交
397 398 399 400
          record_ids_(record_ids) {
    record_ids_.Clear();
}

Y
Yu Kun 已提交
401
BaseTaskPtr
Y
Yu Kun 已提交
402
InsertTask::Create(const ::milvus::grpc::InsertParam &insert_param,
Y
Yu Kun 已提交
403
                         ::milvus::grpc::VectorIds &record_ids) {
Y
Yu Kun 已提交
404
    return std::shared_ptr<GrpcBaseTask>(new InsertTask(insert_param, record_ids));
K
kun yu 已提交
405 406
}

Y
Yu Kun 已提交
407
ServerError
Y
Yu Kun 已提交
408
InsertTask::OnExecute() {
K
kun yu 已提交
409 410 411 412
    try {
        TimeRecorder rc("InsertVectorTask");

        //step 1: check arguments
Y
Yu Kun 已提交
413
        ServerError res = ValidationUtil::ValidateTableName(insert_param_.table_name());
Y
Yu Kun 已提交
414
        if (res != SERVER_SUCCESS) {
Y
Yu Kun 已提交
415
            return SetError(res, "Invalid table name: " + insert_param_.table_name());
K
kun yu 已提交
416
        }
Y
Yu Kun 已提交
417
        if (insert_param_.row_record_array().empty()) {
K
kun yu 已提交
418 419 420
            return SetError(SERVER_INVALID_ROWRECORD_ARRAY, "Row record array is empty");
        }

Y
Yu Kun 已提交
421 422 423 424 425 426 427
        if (!record_ids_.vector_id_array().empty()) {
            if (record_ids_.vector_id_array().size() != insert_param_.row_record_array_size()) {
                return SetError(SERVER_ILLEGAL_VECTOR_ID,
                        "Size of vector ids is not equal to row record array size");
            }
        }

K
kun yu 已提交
428 429
        //step 2: check table existence
        engine::meta::TableSchema table_info;
Y
Yu Kun 已提交
430
        table_info.table_id_ = insert_param_.table_name();
K
kun yu 已提交
431
        engine::Status stat = DBWrapper::DB()->DescribeTable(table_info);
Y
Yu Kun 已提交
432 433 434
        if (!stat.ok()) {
            if (stat.IsNotFound()) {
                return SetError(SERVER_TABLE_NOT_EXIST,
Y
Yu Kun 已提交
435
                                "Table " + insert_param_.table_name() + " not exists");
K
kun yu 已提交
436 437 438 439 440
            } else {
                return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
            }
        }

S
starlord 已提交
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
        //all user provide id, or all internal id
        uint64_t row_count = 0;
        DBWrapper::DB()->GetTableRowCount(table_info.table_id_, row_count);
        bool empty_table = (row_count == 0);
        bool user_provide_ids = !insert_param_.row_id_array().empty();
        if(!empty_table) {
            //user already provided id before, all insert action require user id
            if(engine::utils::UserDefinedId(table_info.flag_) && !user_provide_ids) {
                return SetError(SERVER_INVALID_ARGUMENT, "Table vector ids are user defined, please provide id for this batch");
            }

            //user didn't provided id before, no need to provide user id
            if(!engine::utils::UserDefinedId(table_info.flag_) && user_provide_ids) {
                return SetError(SERVER_INVALID_ARGUMENT, "Table vector ids are auto generated, no need to provide id for this batch");
            }
        }

K
kun yu 已提交
458 459 460 461 462 463 464
        rc.RecordSection("check validation");

#ifdef MILVUS_ENABLE_PROFILING
        std::string fname = "/tmp/insert_" + std::to_string(this->record_array_.size()) +
                            "_" + GetCurrTimeStr() + ".profiling";
        ProfilerStart(fname.c_str());
#endif
K
kun yu 已提交
465 466

        //step 3: prepare float data
Y
Yu Kun 已提交
467
        std::vector<float> vec_f(insert_param_.row_record_array_size() * table_info.dimension_, 0);
K
kun yu 已提交
468

K
kun yu 已提交
469
        // TODO: change to one dimension array in protobuf or use multiple-thread to copy the data
Y
Yu Kun 已提交
470
        for (size_t i = 0; i < insert_param_.row_record_array_size(); i++) {
Y
Yu Kun 已提交
471 472 473 474 475 476 477 478 479 480
            if (insert_param_.row_record_array(i).vector_data().empty()) {
                return SetError(SERVER_INVALID_ROWRECORD_ARRAY, "Row record float array is empty");
            }
            uint64_t vec_dim = insert_param_.row_record_array(i).vector_data().size();
            if (vec_dim != table_info.dimension_) {
                ServerError error_code = SERVER_INVALID_VECTOR_DIMENSION;
                std::string error_msg = "Invalid rowrecord dimension: " + std::to_string(vec_dim)
                                        + " vs. table dimension:" +
                                        std::to_string(table_info.dimension_);
                return SetError(error_code, error_msg);
K
kun yu 已提交
481
            }
Y
yudong.cai 已提交
482 483
            memcpy(&vec_f[i * table_info.dimension_],
                   insert_param_.row_record_array(i).vector_data().data(),
Y
Yu Kun 已提交
484
                   table_info.dimension_ * sizeof(float));
K
kun yu 已提交
485 486
        }

K
kun yu 已提交
487
        rc.ElapseFromBegin("prepare vectors data");
K
kun yu 已提交
488 489

        //step 4: insert vectors
Y
Yu Kun 已提交
490
        auto vec_count = (uint64_t) insert_param_.row_record_array_size();
Y
Yu Kun 已提交
491
        std::vector<int64_t> vec_ids(insert_param_.row_id_array_size(), 0);
S
starlord 已提交
492 493 494 495
        if(!insert_param_.row_id_array().empty()) {
            const int64_t* src_data = insert_param_.row_id_array().data();
            int64_t* target_data = vec_ids.data();
            memcpy(target_data, src_data, (size_t)(sizeof(int64_t)*insert_param_.row_id_array_size()));
Y
Yu Kun 已提交
496
        }
K
kun yu 已提交
497

Y
yudong.cai 已提交
498
        stat = DBWrapper::DB()->InsertVectors(insert_param_.table_name(), vec_count, vec_f.data(), vec_ids);
K
kun yu 已提交
499
        rc.ElapseFromBegin("add vectors to engine");
Y
Yu Kun 已提交
500
        if (!stat.ok()) {
K
kun yu 已提交
501 502
            return SetError(SERVER_CACHE_ERROR, "Cache error: " + stat.ToString());
        }
K
kun yu 已提交
503 504
        for (int64_t id : vec_ids) {
            record_ids_.add_vector_id_array(id);
K
kun yu 已提交
505 506
        }

K
kun yu 已提交
507
        auto ids_size = record_ids_.vector_id_array_size();
Y
Yu Kun 已提交
508
        if (ids_size != vec_count) {
K
kun yu 已提交
509
            std::string msg = "Add " + std::to_string(vec_count) + " vectors but only return "
K
kun yu 已提交
510
                              + std::to_string(ids_size) + " id";
K
kun yu 已提交
511 512 513
            return SetError(SERVER_ILLEGAL_VECTOR_ID, msg);
        }

S
starlord 已提交
514 515 516 517 518 519
        //step 5: update table flag
        if(empty_table && user_provide_ids) {
            stat = DBWrapper::DB()->UpdateTableFlag(insert_param_.table_name(),
                                                    table_info.flag_ | engine::meta::FLAG_MASK_USERID);
        }

K
kun yu 已提交
520 521 522 523 524 525
#ifdef MILVUS_ENABLE_PROFILING
        ProfilerStop();
#endif

        rc.RecordSection("add vectors to engine");
        rc.ElapseFromBegin("total cost");
K
kun yu 已提交
526

Y
Yu Kun 已提交
527
    } catch (std::exception &ex) {
K
kun yu 已提交
528 529 530 531 532 533 534
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
535
SearchTask::SearchTask(const ::milvus::grpc::SearchParam &search_vector_infos,
Y
Yu Kun 已提交
536 537
                                   const std::vector<std::string> &file_id_array,
                                   ::grpc::ServerWriter<::milvus::grpc::TopKQueryResult> &writer)
Y
Yu Kun 已提交
538
        : GrpcBaseTask(DQL_TASK_GROUP),
Y
Yu Kun 已提交
539
          search_param_(search_vector_infos),
K
kun yu 已提交
540 541 542 543 544
          file_id_array_(file_id_array),
          writer_(writer) {

}

Y
Yu Kun 已提交
545
BaseTaskPtr
Y
Yu Kun 已提交
546
SearchTask::Create(const ::milvus::grpc::SearchParam &search_vector_infos,
Y
Yu Kun 已提交
547 548
                         const std::vector<std::string> &file_id_array,
                         ::grpc::ServerWriter<::milvus::grpc::TopKQueryResult> &writer) {
Y
Yu Kun 已提交
549
    return std::shared_ptr<GrpcBaseTask>(new SearchTask(search_vector_infos, file_id_array,
Y
Yu Kun 已提交
550
                                                              writer));
K
kun yu 已提交
551 552
}

Y
Yu Kun 已提交
553
ServerError
Y
Yu Kun 已提交
554
SearchTask::OnExecute() {
K
kun yu 已提交
555
    try {
Y
Yu Kun 已提交
556
        TimeRecorder rc("SearchTask");
K
kun yu 已提交
557 558

        //step 1: check arguments
Y
Yu Kun 已提交
559
        std::string table_name_ = search_param_.table_name();
K
kun yu 已提交
560
        ServerError res = ValidationUtil::ValidateTableName(table_name_);
Y
Yu Kun 已提交
561
        if (res != SERVER_SUCCESS) {
K
kun yu 已提交
562 563 564
            return SetError(res, "Invalid table name: " + table_name_);
        }

Y
Yu Kun 已提交
565
        int64_t top_k_ = search_param_.topk();
K
kun yu 已提交
566

Y
Yu Kun 已提交
567
        if (top_k_ <= 0 || top_k_ > 1024) {
Y
Yu Kun 已提交
568
            return SetError(SERVER_INVALID_TOPK, "Invalid topk: " + std::to_string(top_k_));
K
kun yu 已提交
569
        }
Y
Yu Kun 已提交
570 571 572 573 574 575

        int64_t nprobe = search_param_.nprobe();
        if (nprobe <= 0) {
            return SetError(SERVER_INVALID_NPROBE, "Invalid nprobe: " + std::to_string(nprobe));
        }

Y
Yu Kun 已提交
576
        if (search_param_.query_record_array().empty()) {
K
kun yu 已提交
577 578 579 580 581 582 583
            return SetError(SERVER_INVALID_ROWRECORD_ARRAY, "Row record array is empty");
        }

        //step 2: check table existence
        engine::meta::TableSchema table_info;
        table_info.table_id_ = table_name_;
        engine::Status stat = DBWrapper::DB()->DescribeTable(table_info);
Y
Yu Kun 已提交
584 585
        if (!stat.ok()) {
            if (stat.IsNotFound()) {
K
kun yu 已提交
586 587 588 589 590 591 592 593 594 595 596 597
                return SetError(SERVER_TABLE_NOT_EXIST, "Table " + table_name_ + " not exists");
            } else {
                return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
            }
        }

        //step 3: check date range, and convert to db dates
        std::vector<DB_DATE> dates;
        ServerError error_code = SERVER_SUCCESS;
        std::string error_msg;

        std::vector<::milvus::grpc::Range> range_array;
Y
Yu Kun 已提交
598 599
        for (size_t i = 0; i < search_param_.query_range_array_size(); i++) {
            range_array.emplace_back(search_param_.query_range_array(i));
K
kun yu 已提交
600 601
        }
        ConvertTimeRangeToDBDates(range_array, dates, error_code, error_msg);
Y
Yu Kun 已提交
602
        if (error_code != SERVER_SUCCESS) {
K
kun yu 已提交
603 604 605
            return SetError(error_code, error_msg);
        }

K
kun yu 已提交
606 607 608 609 610 611 612 613
        double span_check = rc.RecordSection("check validation");

#ifdef MILVUS_ENABLE_PROFILING
        std::string fname = "/tmp/search_nq_" + std::to_string(this->record_array_.size()) +
                            "_top_" + std::to_string(this->top_k_) + "_" +
                            GetCurrTimeStr() + ".profiling";
        ProfilerStart(fname.c_str());
#endif
K
kun yu 已提交
614 615

        //step 3: prepare float data
Y
Yu Kun 已提交
616
        auto record_array_size = search_param_.query_record_array_size();
K
kun yu 已提交
617 618
        std::vector<float> vec_f(record_array_size * table_info.dimension_, 0);
        for (size_t i = 0; i < record_array_size; i++) {
619 620
            if (search_param_.query_record_array(i).vector_data().empty()) {
                return SetError(SERVER_INVALID_ROWRECORD_ARRAY, "Query record float array is empty");
K
kun yu 已提交
621
            }
622 623 624 625 626 627 628 629 630 631 632
            uint64_t query_vec_dim = search_param_.query_record_array(i).vector_data().size();
            if (query_vec_dim != table_info.dimension_) {
                ServerError error_code = SERVER_INVALID_VECTOR_DIMENSION;
                std::string error_msg = "Invalid rowrecord dimension: " + std::to_string(query_vec_dim)
                                        + " vs. table dimension:" + std::to_string(table_info.dimension_);
                return SetError(error_code, error_msg);
            }

            memcpy(&vec_f[i * table_info.dimension_],
                   search_param_.query_record_array(i).vector_data().data(),
                   table_info.dimension_ * sizeof(float));
K
kun yu 已提交
633
        }
K
kun yu 已提交
634
        rc.ElapseFromBegin("prepare vector data");
K
kun yu 已提交
635 636 637

        //step 4: search vectors
        engine::QueryResults results;
Y
Yu Kun 已提交
638
        auto record_count = (uint64_t) search_param_.query_record_array().size();
K
kun yu 已提交
639

Y
Yu Kun 已提交
640
        if (file_id_array_.empty()) {
Y
Yu Kun 已提交
641
            stat = DBWrapper::DB()->Query(table_name_, (size_t) top_k_, record_count, nprobe, vec_f.data(),
Y
Yu Kun 已提交
642
                                          dates, results);
K
kun yu 已提交
643
        } else {
Y
Yu Kun 已提交
644 645
            stat = DBWrapper::DB()->Query(table_name_, file_id_array_, (size_t) top_k_,
                                          record_count, nprobe, vec_f.data(), dates, results);
K
kun yu 已提交
646 647
        }

K
kun yu 已提交
648
        rc.ElapseFromBegin("search vectors from engine");
Y
Yu Kun 已提交
649
        if (!stat.ok()) {
K
kun yu 已提交
650 651 652
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

Y
Yu Kun 已提交
653
        if (results.empty()) {
K
kun yu 已提交
654 655 656
            return SERVER_SUCCESS; //empty table
        }

Y
Yu Kun 已提交
657
        if (results.size() != record_count) {
K
kun yu 已提交
658 659 660 661 662
            std::string msg = "Search " + std::to_string(record_count) + " vectors but only return "
                              + std::to_string(results.size()) + " results";
            return SetError(SERVER_ILLEGAL_SEARCH_RESULT, msg);
        }

K
kun yu 已提交
663
        rc.ElapseFromBegin("do search");
K
kun yu 已提交
664 665

        //step 5: construct result array
Y
Yu Kun 已提交
666 667
        for (uint64_t i = 0; i < record_count; i++) {
            auto &result = results[i];
Y
Yu Kun 已提交
668
            const auto &record = search_param_.query_record_array(i);
K
kun yu 已提交
669
            ::milvus::grpc::TopKQueryResult grpc_topk_result;
Y
Yu Kun 已提交
670
            for (auto &pair : result) {
K
kun yu 已提交
671 672 673 674
                ::milvus::grpc::QueryResult *grpc_result = grpc_topk_result.add_query_result_arrays();
                grpc_result->set_id(pair.first);
                grpc_result->set_distance(pair.second);
            }
K
kun yu 已提交
675 676 677
            if (!writer_.Write(grpc_topk_result)) {
                return SetError(SERVER_WRITE_ERROR, "Write topk result failed!");
            }
K
kun yu 已提交
678
        }
K
kun yu 已提交
679 680 681 682 683 684 685 686 687

#ifdef MILVUS_ENABLE_PROFILING
        ProfilerStop();
#endif

        double span_result = rc.RecordSection("construct result");
        rc.ElapseFromBegin("totally cost");

        //step 6: print time cost percent
K
kun yu 已提交
688

Y
Yu Kun 已提交
689
    } catch (std::exception &ex) {
K
kun yu 已提交
690 691 692 693 694 695 696
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
697
CountTableTask::CountTableTask(const std::string &table_name, int64_t &row_count)
Y
Yu Kun 已提交
698
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
K
kun yu 已提交
699 700 701 702 703
          table_name_(table_name),
          row_count_(row_count) {

}

Y
Yu Kun 已提交
704
BaseTaskPtr
Y
Yu Kun 已提交
705 706
CountTableTask::Create(const std::string &table_name, int64_t &row_count) {
    return std::shared_ptr<GrpcBaseTask>(new CountTableTask(table_name, row_count));
K
kun yu 已提交
707 708
}

Y
Yu Kun 已提交
709
ServerError
Y
Yu Kun 已提交
710
CountTableTask::OnExecute() {
K
kun yu 已提交
711 712 713 714 715
    try {
        TimeRecorder rc("GetTableRowCountTask");

        //step 1: check arguments
        ServerError res = SERVER_SUCCESS;
K
kun yu 已提交
716
        res = ValidationUtil::ValidateTableName(table_name_);
Y
Yu Kun 已提交
717
        if (res != SERVER_SUCCESS) {
K
kun yu 已提交
718 719 720 721 722 723 724 725 726 727 728 729
            return SetError(res, "Invalid table name: " + table_name_);
        }

        //step 2: get row count
        uint64_t row_count = 0;
        engine::Status stat = DBWrapper::DB()->GetTableRowCount(table_name_, row_count);
        if (!stat.ok()) {
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

        row_count_ = (int64_t) row_count;

K
kun yu 已提交
730
        rc.ElapseFromBegin("total cost");
K
kun yu 已提交
731

Y
Yu Kun 已提交
732
    } catch (std::exception &ex) {
K
kun yu 已提交
733 734 735 736 737 738 739
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Y
Yu Kun 已提交
740
CmdTask::CmdTask(const std::string &cmd, std::string &result)
Y
Yu Kun 已提交
741
        : GrpcBaseTask(PING_TASK_GROUP),
K
kun yu 已提交
742 743 744 745 746
          cmd_(cmd),
          result_(result) {

}

Y
Yu Kun 已提交
747
BaseTaskPtr
Y
Yu Kun 已提交
748 749
CmdTask::Create(const std::string &cmd, std::string &result) {
    return std::shared_ptr<GrpcBaseTask>(new CmdTask(cmd, result));
K
kun yu 已提交
750 751
}

Y
Yu Kun 已提交
752
ServerError
Y
Yu Kun 已提交
753
CmdTask::OnExecute() {
Y
Yu Kun 已提交
754
    if (cmd_ == "version") {
K
kun yu 已提交
755
        result_ = MILVUS_VERSION;
K
kun yu 已提交
756 757
    } else {
        result_ = "OK";
K
kun yu 已提交
758 759 760 761 762
    }

    return SERVER_SUCCESS;
}

763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DeleteByRangeTask::DeleteByRangeTask(const ::milvus::grpc::DeleteByRangeParam &delete_by_range_param)
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
          delete_by_range_param_(delete_by_range_param){
}

BaseTaskPtr
DeleteByRangeTask::Create(const ::milvus::grpc::DeleteByRangeParam &delete_by_range_param) {
    return std::shared_ptr<GrpcBaseTask>(new DeleteByRangeTask(delete_by_range_param));
}

ServerError
DeleteByRangeTask::OnExecute() {
    try {
        TimeRecorder rc("DeleteByRangeTask");

        //step 1: check arguments
        std::string table_name = delete_by_range_param_.table_name();
        ServerError res = ValidationUtil::ValidateTableName(table_name);
        if (res != SERVER_SUCCESS) {
            return SetError(res, "Invalid table name: " + table_name);
        }

        //step 2: check table existence
        engine::meta::TableSchema table_info;
        table_info.table_id_ = table_name;
        engine::Status stat = DBWrapper::DB()->DescribeTable(table_info);
        if (!stat.ok()) {
            if (stat.IsNotFound()) {
                return SetError(SERVER_TABLE_NOT_EXIST, "Table " + table_name + " not exists");
            } else {
                return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
            }
        }

        rc.ElapseFromBegin("check validation");

        //step 3: check date range, and convert to db dates
        std::vector<DB_DATE> dates;
        ServerError error_code = SERVER_SUCCESS;
        std::string error_msg;

        std::vector<::milvus::grpc::Range> range_array;
        range_array.emplace_back(delete_by_range_param_.range());
        ConvertTimeRangeToDBDates(range_array, dates, error_code, error_msg);
        if (error_code != SERVER_SUCCESS) {
            return SetError(error_code, error_msg);
        }

#ifdef MILVUS_ENABLE_PROFILING
        std::string fname = "/tmp/search_nq_" + std::to_string(this->record_array_.size()) +
                            "_top_" + std::to_string(this->top_k_) + "_" +
                            GetCurrTimeStr() + ".profiling";
        ProfilerStart(fname.c_str());
#endif
        engine::Status status = DBWrapper::DB()->DeleteTable(table_name, dates);
        if (!status.ok()) {
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

    } catch (std::exception &ex) {
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }
    
    return SERVER_SUCCESS;
}

Y
Yu Kun 已提交
830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
PreloadTableTask::PreloadTableTask(const std::string &table_name)
        : GrpcBaseTask(DDL_DML_TASK_GROUP),
          table_name_(table_name) {

}

BaseTaskPtr
PreloadTableTask::Create(const std::string &table_name){
    return std::shared_ptr<GrpcBaseTask>(new PreloadTableTask(table_name));
}

ServerError
PreloadTableTask::OnExecute() {
    try {
        TimeRecorder rc("PreloadTableTask");

        //step 1: check arguments
        ServerError res = ValidationUtil::ValidateTableName(table_name_);
        if (res != SERVER_SUCCESS) {
            return SetError(res, "Invalid table name: " + table_name_);
        }

        //step 2: check table existence
        engine::Status stat = DBWrapper::DB()->PreloadTable(table_name_);
        if (!stat.ok()) {
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

        rc.ElapseFromBegin("totally cost");
    } catch (std::exception &ex) {
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

    return SERVER_SUCCESS;
}

867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DescribeIndexTask::DescribeIndexTask(const std::string &table_name,
                                     ::milvus::grpc::IndexParam &index_param)
    : GrpcBaseTask(DDL_DML_TASK_GROUP),
      table_name_(table_name),
      index_param_(index_param) {

}

BaseTaskPtr
DescribeIndexTask::Create(const std::string &table_name,
                          ::milvus::grpc::IndexParam &index_param){
    return std::shared_ptr<GrpcBaseTask>(new DescribeIndexTask(table_name, index_param));
}

ServerError
DescribeIndexTask::OnExecute() {
    try {
        TimeRecorder rc("DescribeIndexTask");
Y
Yu Kun 已提交
886

887 888 889 890 891 892 893 894 895 896 897 898 899 900 901
        //step 1: check arguments
        ServerError res = ValidationUtil::ValidateTableName(table_name_);
        if (res != SERVER_SUCCESS) {
            return SetError(res, "Invalid table name: " + table_name_);
        }

        //step 2: check table existence
        engine::TableIndex index;
        engine::Status stat = DBWrapper::DB()->DescribeIndex(table_name_, index);
        if (!stat.ok()) {
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

        index_param_.mutable_table_name()->set_table_name(table_name_);
        index_param_.mutable_index()->set_index_type(index.engine_type_);
S
starlord 已提交
902 903 904
        index_param_.mutable_index()->set_nlist(index.nlist_);
        index_param_.mutable_index()->set_index_file_size(index.index_file_size_);
        index_param_.mutable_index()->set_metric_type(index.metric_type_);
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949

        rc.ElapseFromBegin("totally cost");
    } catch (std::exception &ex) {
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

    return SERVER_SUCCESS;
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DropIndexTask::DropIndexTask(const std::string &table_name)
    : GrpcBaseTask(DDL_DML_TASK_GROUP),
      table_name_(table_name) {

}

BaseTaskPtr
DropIndexTask::Create(const std::string &table_name){
    return std::shared_ptr<GrpcBaseTask>(new DropIndexTask(table_name));
}

ServerError
DropIndexTask::OnExecute() {
    try {
        TimeRecorder rc("DropIndexTask");

        //step 1: check arguments
        ServerError res = ValidationUtil::ValidateTableName(table_name_);
        if (res != SERVER_SUCCESS) {
            return SetError(res, "Invalid table name: " + table_name_);
        }

        //step 2: check table existence
        engine::Status stat = DBWrapper::DB()->DropIndex(table_name_);
        if (!stat.ok()) {
            return SetError(DB_META_TRANSACTION_FAILED, "Engine failed: " + stat.ToString());
        }

        rc.ElapseFromBegin("totally cost");
    } catch (std::exception &ex) {
        return SetError(SERVER_UNEXPECTED_ERROR, ex.what());
    }

    return SERVER_SUCCESS;
}
Y
Yu Kun 已提交
950

Y
Yu Kun 已提交
951
}
K
kun yu 已提交
952 953 954
}
}
}