2021-05-18 15:22:17 +08:00
|
|
|
/*
|
|
|
|
* AdvanceVersionCommand.actor.cpp
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
2022-03-22 04:36:23 +08:00
|
|
|
* Copyright 2013-2022 Apple Inc. and the FoundationDB project authors
|
2021-05-18 15:22:17 +08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "boost/lexical_cast.hpp"
|
2022-06-24 04:37:35 +08:00
|
|
|
#include "fmt/format.h"
|
2021-05-18 15:22:17 +08:00
|
|
|
#include "fdbcli/fdbcli.actor.h"
|
|
|
|
|
|
|
|
#include "fdbclient/IClientApi.h"
|
|
|
|
|
|
|
|
#include "flow/Arena.h"
|
|
|
|
#include "flow/FastRef.h"
|
|
|
|
#include "flow/ThreadHelper.actor.h"
|
|
|
|
#include "flow/actorcompiler.h" // This must be the last #include.
|
|
|
|
|
|
|
|
namespace fdb_cli {
|
|
|
|
|
2022-09-20 02:35:58 +08:00
|
|
|
const KeyRef advanceVersionSpecialKey = "\xff\xff/management/min_required_commit_version"_sr;
|
2021-05-18 15:22:17 +08:00
|
|
|
|
|
|
|
ACTOR Future<bool> advanceVersionCommandActor(Reference<IDatabase> db, std::vector<StringRef> tokens) {
|
|
|
|
if (tokens.size() != 2) {
|
|
|
|
printUsage(tokens[0]);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
state Version v;
|
|
|
|
int n = 0;
|
2022-03-01 10:19:52 +08:00
|
|
|
if (sscanf(tokens[1].toString().c_str(), "%" PRId64 "%n", &v, &n) != 1 || n != tokens[1].size()) {
|
2021-05-18 15:22:17 +08:00
|
|
|
printUsage(tokens[0]);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
state Reference<ITransaction> tr = db->createTransaction();
|
|
|
|
loop {
|
|
|
|
tr->setOption(FDBTransactionOptions::SPECIAL_KEY_SPACE_ENABLE_WRITES);
|
|
|
|
try {
|
|
|
|
Version rv = wait(safeThreadFutureToFuture(tr->getReadVersion()));
|
|
|
|
if (rv <= v) {
|
|
|
|
tr->set(advanceVersionSpecialKey, boost::lexical_cast<std::string>(v));
|
|
|
|
wait(safeThreadFutureToFuture(tr->commit()));
|
|
|
|
} else {
|
2022-02-26 07:49:23 +08:00
|
|
|
fmt::print("Current read version is {}\n", rv);
|
2021-05-18 15:22:17 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} catch (Error& e) {
|
|
|
|
wait(safeThreadFutureToFuture(tr->onError(e)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CommandFactory advanceVersionFactory(
|
|
|
|
"advanceversion",
|
|
|
|
CommandHelp(
|
|
|
|
"advanceversion <VERSION>",
|
|
|
|
"Force the cluster to recover at the specified version",
|
|
|
|
"Forces the cluster to recover at the specified version. If the specified version is larger than the current "
|
|
|
|
"version of the cluster, the cluster version is advanced "
|
|
|
|
"to the specified version via a forced recovery."));
|
|
|
|
} // namespace fdb_cli
|