ClickHouse/dbms/src/Storages/MergeTree/ReshardingJob.cpp

113 lines
2.6 KiB
C++

#include <Storages/MergeTree/ReshardingJob.h>
#include <IO/ReadBufferFromString.h>
#include <IO/ReadHelpers.h>
#include <IO/WriteBufferFromString.h>
#include <IO/WriteHelpers.h>
#include <Parsers/ExpressionListParsers.h>
#include <Parsers/parseQuery.h>
#include <Parsers/queryToString.h>
namespace DB
{
namespace ErrorCodes
{
extern const int LOGICAL_ERROR;
}
ReshardingJob::ReshardingJob(const std::string & serialized_job)
{
ReadBufferFromString buf{serialized_job};
readBinary(database_name, buf);
readBinary(table_name, buf);
readBinary(partition_id, buf);
std::string expr;
readBinary(expr, buf);
ParserExpression parser;
sharding_key_expr = parseQuery(parser, expr.data(), expr.data() + expr.size(), "Sharding key expression");
readBinary(coordinator_id, buf);
readVarUInt(block_number, buf);
readBinary(do_copy, buf);
size_t s;
readVarUInt(s, buf);
for (size_t i = 0; i < s; ++i)
{
std::string path;
readBinary(path, buf);
UInt64 weight;
readVarUInt(weight, buf);
paths.emplace_back(path, weight);
}
}
ReshardingJob::ReshardingJob(const std::string & database_name_, const std::string & table_name_,
const std::string & partition_id_, const WeightedZooKeeperPaths & paths_,
const ASTPtr & sharding_key_expr_, const std::string & coordinator_id_)
: database_name{database_name_},
table_name{table_name_},
partition_id{partition_id_},
paths{paths_},
sharding_key_expr{sharding_key_expr_},
coordinator_id{coordinator_id_}
{
}
ReshardingJob::operator bool() const
{
return !database_name.empty()
&& !table_name.empty()
&& !partition_id.empty()
&& !paths.empty()
&& (storage != nullptr);
}
std::string ReshardingJob::toString() const
{
WriteBufferFromOwnString buf;
writeBinary(database_name, buf);
writeBinary(table_name, buf);
writeBinary(partition_id, buf);
writeBinary(queryToString(sharding_key_expr), buf);
writeBinary(coordinator_id, buf);
writeVarUInt(block_number, buf);
writeBinary(do_copy, buf);
writeVarUInt(paths.size(), buf);
for (const auto & path : paths)
{
writeBinary(path.first, buf);
writeVarUInt(path.second, buf);
}
return buf.str();
}
bool ReshardingJob::isCoordinated() const
{
return !coordinator_id.empty();
}
void ReshardingJob::clear()
{
database_name.clear();
table_name.clear();
partition_id.clear();
paths.clear();
coordinator_id.clear();
storage = nullptr;
block_number = 0;
is_aborted = false;
}
}