mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
* update log format Signed-off-by: wxyu <xy.wang@zilliz.com> * add new log macro Signed-off-by: wxyu <xy.wang@zilliz.com> * use new log macro instead Signed-off-by: Xiangyu Wang <xy.wang@zilliz.com> * add SetThreadName function Signed-off-by: wxyu <xy.wang@zilliz.com> * clang-format Signed-off-by: wxyu <xy.wang@zilliz.com> * set thread name Signed-off-by: Xiangyu Wang <xy.wang@zilliz.com> * add changelog Signed-off-by: wxyu <xy.wang@zilliz.com> * add git ignore .swp file Signed-off-by: wxyu <xy.wang@zilliz.com> * update log level in LogUtil.cpp Signed-off-by: wxyu <xy.wang@zilliz.com>
80 lines
2.6 KiB
C++
80 lines
2.6 KiB
C++
// Licensed to the Apache Software Foundation (ASF) under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you 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 "server/delivery/request/FlushRequest.h"
|
|
|
|
#include <memory>
|
|
|
|
#include "server/DBWrapper.h"
|
|
#include "utils/Log.h"
|
|
#include "utils/TimeRecorder.h"
|
|
|
|
namespace milvus {
|
|
namespace server {
|
|
|
|
FlushRequest::FlushRequest(const std::shared_ptr<milvus::server::Context>& context,
|
|
const std::vector<std::string>& collection_names)
|
|
: BaseRequest(context, BaseRequest::kFlush), collection_names_(collection_names) {
|
|
}
|
|
|
|
BaseRequestPtr
|
|
FlushRequest::Create(const std::shared_ptr<milvus::server::Context>& context,
|
|
const std::vector<std::string>& collection_names) {
|
|
return std::shared_ptr<BaseRequest>(new FlushRequest(context, collection_names));
|
|
}
|
|
|
|
Status
|
|
FlushRequest::OnExecute() {
|
|
std::string hdr = "FlushRequest flush collections: ";
|
|
for (auto& name : collection_names_) {
|
|
hdr += name;
|
|
hdr += ", ";
|
|
}
|
|
|
|
TimeRecorderAuto rc(hdr);
|
|
Status status = Status::OK();
|
|
LOG_SERVER_DEBUG_ << hdr;
|
|
|
|
for (auto& name : collection_names_) {
|
|
// only process root collection, ignore partition collection
|
|
engine::meta::CollectionSchema collection_schema;
|
|
collection_schema.collection_id_ = name;
|
|
status = DBWrapper::DB()->DescribeCollection(collection_schema);
|
|
if (!status.ok()) {
|
|
if (status.code() == DB_NOT_FOUND) {
|
|
return Status(SERVER_COLLECTION_NOT_EXIST, CollectionNotExistMsg(name));
|
|
} else {
|
|
return status;
|
|
}
|
|
} else {
|
|
if (!collection_schema.owner_collection_.empty()) {
|
|
return Status(SERVER_INVALID_COLLECTION_NAME, CollectionNotExistMsg(name));
|
|
}
|
|
}
|
|
|
|
status = DBWrapper::DB()->Flush(name);
|
|
if (!status.ok()) {
|
|
return status;
|
|
}
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
} // namespace server
|
|
} // namespace milvus
|