ClickHouse/dbms/Storages/MergeTree/MergeTreeDataPartCompact.cpp

188 lines
7.5 KiB
C++
Raw Normal View History

2019-10-16 18:27:53 +00:00
#include "MergeTreeDataPartCompact.h"
#include <Storages/MergeTree/MergeTreeReaderCompact.h>
2019-10-22 10:50:17 +00:00
#include <Storages/MergeTree/MergeTreeDataPartWriterCompact.h>
2019-10-16 18:27:53 +00:00
#include <Storages/MergeTree/IMergeTreeReader.h>
2020-01-17 12:24:27 +00:00
#include <Poco/File.h>
2019-10-16 18:27:53 +00:00
namespace DB
{
namespace ErrorCodes
{
2020-02-25 18:02:41 +00:00
extern const int CANNOT_READ_ALL_DATA;
extern const int NOT_IMPLEMENTED;
2019-10-16 18:27:53 +00:00
extern const int NO_FILE_IN_DATA_PART;
extern const int BAD_SIZE_OF_FILE_IN_DATA_PART;
}
MergeTreeDataPartCompact::MergeTreeDataPartCompact(
2019-10-16 18:27:53 +00:00
MergeTreeData & storage_,
const String & name_,
2019-12-19 13:10:57 +00:00
const DiskPtr & disk_,
2019-10-16 18:27:53 +00:00
const std::optional<String> & relative_path_)
2020-01-14 13:23:51 +00:00
: IMergeTreeDataPart(storage_, name_, disk_, relative_path_, Type::COMPACT)
2019-10-16 18:27:53 +00:00
{
}
MergeTreeDataPartCompact::MergeTreeDataPartCompact(
const MergeTreeData & storage_,
const String & name_,
const MergeTreePartInfo & info_,
2019-12-19 13:10:57 +00:00
const DiskPtr & disk_,
2019-10-16 18:27:53 +00:00
const std::optional<String> & relative_path_)
2020-01-14 13:23:51 +00:00
: IMergeTreeDataPart(storage_, name_, info_, disk_, relative_path_, Type::COMPACT)
2019-10-16 18:27:53 +00:00
{
}
IMergeTreeDataPart::MergeTreeReaderPtr MergeTreeDataPartCompact::getReader(
const NamesAndTypesList & columns_to_read,
const MarkRanges & mark_ranges,
UncompressedCache * uncompressed_cache,
MarkCache * mark_cache,
const MergeTreeReaderSettings & reader_settings,
2019-10-16 18:27:53 +00:00
const ValueSizeMap & avg_value_size_hints,
2020-01-17 12:24:27 +00:00
const ReadBufferFromFileBase::ProfileCallback & profile_callback) const
2019-10-16 18:27:53 +00:00
{
auto ptr = std::static_pointer_cast<const MergeTreeDataPartCompact>(shared_from_this());
2019-11-05 11:53:22 +00:00
return std::make_unique<MergeTreeReaderCompact>(
ptr, columns_to_read, uncompressed_cache,
2020-01-17 12:24:27 +00:00
mark_cache, mark_ranges, reader_settings,
avg_value_size_hints, profile_callback);
2019-10-16 18:27:53 +00:00
}
2019-10-21 15:33:59 +00:00
IMergeTreeDataPart::MergeTreeWriterPtr MergeTreeDataPartCompact::getWriter(
const NamesAndTypesList & columns_list,
2019-11-07 11:11:38 +00:00
const std::vector<MergeTreeIndexPtr> & indices_to_recalc,
2019-10-21 15:33:59 +00:00
const CompressionCodecPtr & default_codec,
const MergeTreeWriterSettings & writer_settings,
2019-11-07 11:11:38 +00:00
const MergeTreeIndexGranularity & computed_index_granularity) const
2019-10-21 15:33:59 +00:00
{
2019-12-16 14:51:19 +00:00
NamesAndTypesList ordered_columns_list;
std::copy_if(columns_list.begin(), columns_list.end(), std::back_inserter(ordered_columns_list),
2019-12-16 14:51:19 +00:00
[this](const auto & column) { return getColumnPosition(column.name) != std::nullopt; });
/// Order of writing is important in compact format
ordered_columns_list.sort([this](const auto & lhs, const auto & rhs)
{ return *getColumnPosition(lhs.name) < *getColumnPosition(rhs.name); });
return std::make_unique<MergeTreeDataPartWriterCompact>(
disk, getFullRelativePath(), storage, ordered_columns_list, indices_to_recalc,
2019-10-22 10:50:17 +00:00
index_granularity_info.marks_file_extension,
2019-11-07 11:11:38 +00:00
default_codec, writer_settings, computed_index_granularity);
2019-10-21 15:33:59 +00:00
}
2020-03-23 12:19:43 +00:00
void MergeTreeDataPartCompact::calculateEachColumnSizesOnDisk(ColumnSizeByName & /*each_columns_size*/, ColumnSize & total_size) const
{
auto bin_checksum = checksums.files.find(DATA_FILE_NAME_WITH_EXTENSION);
if (bin_checksum != checksums.files.end())
{
total_size.data_compressed += bin_checksum->second.file_size;
total_size.data_uncompressed += bin_checksum->second.uncompressed_size;
}
2019-11-21 16:10:22 +00:00
auto mrk_checksum = checksums.files.find(DATA_FILE_NAME + index_granularity_info.marks_file_extension);
if (mrk_checksum != checksums.files.end())
total_size.marks += mrk_checksum->second.file_size;
2019-10-16 18:27:53 +00:00
}
void MergeTreeDataPartCompact::loadIndexGranularity()
{
2020-02-28 17:14:55 +00:00
String full_path = getFullRelativePath();
2019-10-16 18:27:53 +00:00
if (columns.empty())
throw Exception("No columns in part " + name, ErrorCodes::NO_FILE_IN_DATA_PART);
2019-10-31 14:44:17 +00:00
if (!index_granularity_info.is_adaptive)
throw Exception("MergeTreeDataPartCompact cannot be created with non-adaptive granulary.", ErrorCodes::NOT_IMPLEMENTED);
2019-10-31 14:44:17 +00:00
2020-02-28 17:14:55 +00:00
auto marks_file_path = index_granularity_info.getMarksFilePath(full_path + "data");
if (!disk->exists(marks_file_path))
throw Exception("Marks file '" + fullPath(disk, marks_file_path) + "' doesn't exist", ErrorCodes::NO_FILE_IN_DATA_PART);
2019-10-16 18:27:53 +00:00
2020-02-28 17:14:55 +00:00
size_t marks_file_size = disk->getFileSize(marks_file_path);
2019-10-16 18:27:53 +00:00
2020-02-28 17:14:55 +00:00
auto buffer = disk->readFile(marks_file_path, marks_file_size);
while (!buffer->eof())
2019-10-16 18:27:53 +00:00
{
2019-12-27 21:17:53 +00:00
/// Skip offsets for columns
2020-02-28 17:14:55 +00:00
buffer->seek(columns.size() * sizeof(MarkInCompressedFile), SEEK_CUR);
2019-10-16 18:27:53 +00:00
size_t granularity;
2020-02-28 17:14:55 +00:00
readIntBinary(granularity, *buffer);
2019-10-16 18:27:53 +00:00
index_granularity.appendMark(granularity);
}
2019-10-31 14:44:17 +00:00
2020-01-14 13:23:51 +00:00
if (index_granularity.getMarksCount() * index_granularity_info.getMarkSizeInBytes(columns.size()) != marks_file_size)
2019-10-16 18:27:53 +00:00
throw Exception("Cannot read all marks from file " + marks_file_path, ErrorCodes::CANNOT_READ_ALL_DATA);
index_granularity.setInitialized();
2019-10-16 18:27:53 +00:00
}
2019-12-12 18:55:19 +00:00
bool MergeTreeDataPartCompact::hasColumnFiles(const String & column_name, const IDataType &) const
{
if (!getColumnPosition(column_name))
return false;
2020-01-13 14:53:32 +00:00
auto bin_checksum = checksums.files.find(DATA_FILE_NAME_WITH_EXTENSION);
2019-12-16 14:51:19 +00:00
auto mrk_checksum = checksums.files.find(DATA_FILE_NAME + index_granularity_info.marks_file_extension);
2019-12-12 18:55:19 +00:00
return (bin_checksum != checksums.files.end() && mrk_checksum != checksums.files.end());
}
2020-01-16 16:15:01 +00:00
void MergeTreeDataPartCompact::checkConsistency(bool require_part_metadata) const
2019-10-16 18:27:53 +00:00
{
checkConsistencyBase();
2020-02-28 17:14:55 +00:00
String path = getFullRelativePath();
String mrk_file_name = DATA_FILE_NAME + index_granularity_info.marks_file_extension;
if (!checksums.empty())
{
/// count.txt should be present even in non custom-partitioned parts
if (!checksums.files.count("count.txt"))
throw Exception("No checksum for count.txt", ErrorCodes::NO_FILE_IN_DATA_PART);
2020-01-16 16:15:01 +00:00
if (require_part_metadata)
{
if (!checksums.files.count(mrk_file_name))
2020-02-28 17:14:55 +00:00
throw Exception("No marks file checksum for column in part " + fullPath(disk, path), ErrorCodes::NO_FILE_IN_DATA_PART);
if (!checksums.files.count(DATA_FILE_NAME_WITH_EXTENSION))
2020-02-28 17:14:55 +00:00
throw Exception("No data file checksum for in part " + fullPath(disk, path), ErrorCodes::NO_FILE_IN_DATA_PART);
}
}
else
{
{
/// count.txt should be present even in non custom-partitioned parts
2020-02-28 17:14:55 +00:00
auto file_path = path + "count.txt";
if (!disk->exists(file_path) || disk->getFileSize(file_path) == 0)
throw Exception("Part " + path + " is broken: " + fullPath(disk, file_path) + " is empty", ErrorCodes::BAD_SIZE_OF_FILE_IN_DATA_PART);
}
2020-01-16 16:15:01 +00:00
/// Check that marks are nonempty and have the consistent size with columns number.
2020-02-28 17:14:55 +00:00
auto mrk_file_path = path + mrk_file_name;
2020-02-28 17:14:55 +00:00
if (disk->exists(mrk_file_name))
{
2020-02-28 17:14:55 +00:00
UInt64 file_size = disk->getFileSize(mrk_file_name);
if (!file_size)
2020-02-28 17:14:55 +00:00
throw Exception("Part " + path + " is broken: " + fullPath(disk, mrk_file_name) + " is empty.",
ErrorCodes::BAD_SIZE_OF_FILE_IN_DATA_PART);
2020-01-16 16:15:01 +00:00
UInt64 expected_file_size = index_granularity_info.getMarkSizeInBytes(columns.size()) * index_granularity.getMarksCount();
if (expected_file_size != file_size)
throw Exception(
2020-02-28 17:14:55 +00:00
"Part " + path + " is broken: bad size of marks file '" + fullPath(disk, mrk_file_name) + "': " + std::to_string(file_size) + ", must be: " + std::to_string(expected_file_size),
ErrorCodes::BAD_SIZE_OF_FILE_IN_DATA_PART);
}
}
2019-10-16 18:27:53 +00:00
}
2019-11-18 12:22:27 +00:00
MergeTreeDataPartCompact::~MergeTreeDataPartCompact()
{
removeIfNeeded();
}
2019-10-16 18:27:53 +00:00
}