| /* |
| * 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 "slot_import.h" |
| |
| SlotImport::SlotImport(Server *srv) |
| : Database(srv->storage, kDefaultNamespace), srv_(srv), import_slot_range_(-1, -1), import_status_(kImportNone) { |
| std::lock_guard<std::mutex> guard(mutex_); |
| // Let metadata_cf_handle_ be nullptr, then get them in real time while use them. |
| // See comments in SlotMigrator::SlotMigrator for detailed reason. |
| metadata_cf_handle_ = nullptr; |
| } |
| |
| Status SlotImport::Start(const SlotRange &slot_range) { |
| std::lock_guard<std::mutex> guard(mutex_); |
| if (import_status_ == kImportStart) { |
| // return ok if the same slot is importing |
| if (import_slot_range_ == slot_range) { |
| return Status::OK(); |
| } |
| return {Status::NotOK, |
| fmt::format("only one importing job is allowed, current importing: {}", import_slot_range_.String())}; |
| } |
| |
| // Clean slot data first |
| engine::Context ctx(srv_->storage); |
| auto s = ClearKeysOfSlotRange(ctx, namespace_, slot_range); |
| if (!s.ok()) { |
| return {Status::NotOK, fmt::format("clear keys of slot(s) error: {}", s.ToString())}; |
| } |
| |
| import_status_ = kImportStart; |
| import_slot_range_ = slot_range; |
| return Status::OK(); |
| } |
| |
| Status SlotImport::Success(const SlotRange &slot_range) { |
| std::lock_guard<std::mutex> guard(mutex_); |
| if (import_slot_range_ != slot_range) { |
| return {Status::NotOK, fmt::format("mismatch slot, importing slot(s): {}, but got: {}", import_slot_range_.String(), |
| slot_range.String())}; |
| } |
| |
| Status s = srv_->cluster->SetSlotRangeImported(import_slot_range_); |
| if (!s.IsOK()) { |
| return {Status::NotOK, fmt::format("unable to set imported status: {}", slot_range.String())}; |
| } |
| |
| import_status_ = kImportSuccess; |
| return Status::OK(); |
| } |
| |
| Status SlotImport::Fail(const SlotRange &slot_range) { |
| std::lock_guard<std::mutex> guard(mutex_); |
| if (import_slot_range_ != slot_range) { |
| return {Status::NotOK, fmt::format("mismatch slot, importing slot(s): {}, but got: {}", import_slot_range_.String(), |
| slot_range.String())}; |
| } |
| |
| // Clean imported slot data |
| engine::Context ctx(srv_->storage); |
| auto s = ClearKeysOfSlotRange(ctx, namespace_, slot_range); |
| if (!s.ok()) { |
| return {Status::NotOK, fmt::format("clear keys of slot(s) error: {}", s.ToString())}; |
| } |
| |
| import_status_ = kImportFailed; |
| return Status::OK(); |
| } |
| |
| Status SlotImport::StopForLinkError() { |
| std::lock_guard<std::mutex> guard(mutex_); |
| // We don't need to do anything if the importer is not started yet. |
| if (import_status_ != kImportStart) return Status::OK(); |
| |
| // Maybe server has failovered |
| // Situation: |
| // Refer to the situation described in SlotMigrator::SlotMigrator |
| // 1. Change server to slave when it is importing data. |
| // 2. Source server's migration process end after destination server has finished replication. |
| // 3. The migration link closed by source server, then this function will be call by OnEvent. |
| // 4. ClearKeysOfSlot can clear data although server is a slave, because ClearKeysOfSlot |
| // deletes data in rocksdb directly. Therefore, it is necessary to avoid clearing data gotten |
| // from new master. |
| if (!srv_->IsSlave()) { |
| // Clean imported slot data |
| engine::Context ctx(srv_->storage); |
| auto s = ClearKeysOfSlotRange(ctx, namespace_, import_slot_range_); |
| if (!s.ok()) { |
| return {Status::NotOK, fmt::format("clear keys of slot error: {}", s.ToString())}; |
| } |
| } |
| |
| import_status_ = kImportFailed; |
| return Status::OK(); |
| } |
| |
| SlotRange SlotImport::GetSlotRange() { |
| std::lock_guard<std::mutex> guard(mutex_); |
| // import_slot_ only be set when import_status_ is kImportStart |
| if (import_status_ != kImportStart) { |
| return {-1, -1}; |
| } |
| return import_slot_range_; |
| } |
| |
| int SlotImport::GetStatus() { |
| std::lock_guard<std::mutex> guard(mutex_); |
| return import_status_; |
| } |
| |
| void SlotImport::GetImportInfo(std::string *info) { |
| std::lock_guard<std::mutex> guard(mutex_); |
| info->clear(); |
| if (!import_slot_range_.IsValid()) { |
| return; |
| } |
| |
| std::string import_stat; |
| switch (import_status_) { |
| case kImportNone: |
| import_stat = "none"; |
| break; |
| case kImportStart: |
| import_stat = "start"; |
| break; |
| case kImportSuccess: |
| import_stat = "success"; |
| break; |
| case kImportFailed: |
| import_stat = "error"; |
| break; |
| default: |
| break; |
| } |
| |
| *info = fmt::format("importing_slot(s): {}\r\nimport_state: {}\r\n", import_slot_range_.String(), import_stat); |
| } |