#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "StorageLogSettings.h" #include #include #include #include #include #include #include #include #include #include #include namespace DB { namespace ErrorCodes { extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH; extern const int INCORRECT_FILE_NAME; extern const int TIMEOUT_EXCEEDED; extern const int NOT_IMPLEMENTED; } /// NOTE: The lock `StorageStripeLog::rwlock` is NOT kept locked while reading, /// because we read ranges of data that do not change. class StripeLogSource final : public SourceWithProgress { public: static Block getHeader( const StorageSnapshotPtr & storage_snapshot, const Names & column_names, IndexForNativeFormat::Blocks::const_iterator index_begin, IndexForNativeFormat::Blocks::const_iterator index_end) { if (index_begin == index_end) return storage_snapshot->getSampleBlockForColumns(column_names); /// TODO: check if possible to always return storage.getSampleBlock() Block header; for (const auto & column : index_begin->columns) { auto type = DataTypeFactory::instance().get(column.type); header.insert(ColumnWithTypeAndName{ type, column.name }); } return header; } StripeLogSource( const StorageStripeLog & storage_, const StorageSnapshotPtr & storage_snapshot_, const Names & column_names, ReadSettings read_settings_, std::shared_ptr indices_, IndexForNativeFormat::Blocks::const_iterator index_begin_, IndexForNativeFormat::Blocks::const_iterator index_end_, size_t file_size_) : SourceWithProgress(getHeader(storage_snapshot_, column_names, index_begin_, index_end_)) , storage(storage_) , storage_snapshot(storage_snapshot_) , read_settings(std::move(read_settings_)) , indices(indices_) , index_begin(index_begin_) , index_end(index_end_) , file_size(file_size_) { } String getName() const override { return "StripeLog"; } protected: Chunk generate() override { Block res; start(); if (block_in) { res = block_in->read(); /// Freeing memory before destroying the object. if (!res) { block_in.reset(); data_in.reset(); indices.reset(); } } return Chunk(res.getColumns(), res.rows()); } private: const StorageStripeLog & storage; StorageSnapshotPtr storage_snapshot; ReadSettings read_settings; std::shared_ptr indices; IndexForNativeFormat::Blocks::const_iterator index_begin; IndexForNativeFormat::Blocks::const_iterator index_end; size_t file_size; Block header; /** optional - to create objects only on first reading * and delete objects (release buffers) after the source is exhausted * - to save RAM when using a large number of sources. */ bool started = false; std::optional data_in; std::optional block_in; void start() { if (!started) { started = true; String data_file_path = storage.table_path + "data.bin"; data_in.emplace(storage.disk->readFile(data_file_path, read_settings.adjustBufferSize(file_size))); block_in.emplace(*data_in, 0, index_begin, index_end); } } }; /// NOTE: The lock `StorageStripeLog::rwlock` is kept locked in exclusive mode while writing. class StripeLogSink final : public SinkToStorage { public: using WriteLock = std::unique_lock; explicit StripeLogSink( StorageStripeLog & storage_, const StorageMetadataPtr & metadata_snapshot_, WriteLock && lock_) : SinkToStorage(metadata_snapshot_->getSampleBlock()) , storage(storage_) , metadata_snapshot(metadata_snapshot_) , lock(std::move(lock_)) , data_out_compressed(storage.disk->writeFile(storage.data_file_path, DBMS_DEFAULT_BUFFER_SIZE, WriteMode::Append)) , data_out(std::make_unique( *data_out_compressed, CompressionCodecFactory::instance().getDefaultCodec(), storage.max_compress_block_size)) { if (!lock) throw Exception("Lock timeout exceeded", ErrorCodes::TIMEOUT_EXCEEDED); /// Ensure that indices are loaded because we're going to update them. storage.loadIndices(lock); /// If there were no files, save zero file sizes to be able to rollback in case of error. storage.saveFileSizes(lock); size_t initial_data_size = storage.file_checker.getFileSize(storage.data_file_path); block_out = std::make_unique(*data_out, 0, metadata_snapshot->getSampleBlock(), false, &storage.indices, initial_data_size); } String getName() const override { return "StripeLogSink"; } ~StripeLogSink() override { try { if (!done) { /// Rollback partial writes. /// No more writing. data_out.reset(); data_out_compressed.reset(); /// Truncate files to the older sizes. storage.file_checker.repair(); /// Remove excessive indices. storage.removeUnsavedIndices(lock); } } catch (...) { tryLogCurrentException(__PRETTY_FUNCTION__); } } void consume(Chunk chunk) override { block_out->write(getHeader().cloneWithColumns(chunk.detachColumns())); } void onFinish() override { if (done) return; data_out->next(); data_out_compressed->next(); data_out_compressed->finalize(); /// Save the new indices. storage.saveIndices(lock); /// Save the new file sizes. storage.saveFileSizes(lock); done = true; /// unlock should be done from the same thread as lock, and dtor may be /// called from different thread, so it should be done here (at least in /// case of no exceptions occurred) lock.unlock(); } private: StorageStripeLog & storage; StorageMetadataPtr metadata_snapshot; WriteLock lock; std::unique_ptr data_out_compressed; std::unique_ptr data_out; std::unique_ptr block_out; bool done = false; }; StorageStripeLog::StorageStripeLog( DiskPtr disk_, const String & relative_path_, const StorageID & table_id_, const ColumnsDescription & columns_, const ConstraintsDescription & constraints_, const String & comment, bool attach, size_t max_compress_block_size_) : IStorage(table_id_) , disk(std::move(disk_)) , table_path(relative_path_) , data_file_path(table_path + "data.bin") , index_file_path(table_path + "index.mrk") , file_checker(disk, table_path + "sizes.json") , max_compress_block_size(max_compress_block_size_) , log(&Poco::Logger::get("StorageStripeLog")) { StorageInMemoryMetadata storage_metadata; storage_metadata.setColumns(columns_); storage_metadata.setConstraints(constraints_); storage_metadata.setComment(comment); setInMemoryMetadata(storage_metadata); if (relative_path_.empty()) throw Exception("Storage " + getName() + " requires data path", ErrorCodes::INCORRECT_FILE_NAME); /// Ensure the file checker is initialized. if (file_checker.empty()) { file_checker.setEmpty(data_file_path); file_checker.setEmpty(index_file_path); } if (!attach) { /// create directories if they do not exist disk->createDirectories(table_path); } else { try { file_checker.repair(); } catch (...) { tryLogCurrentException(__PRETTY_FUNCTION__); } } } StorageStripeLog::~StorageStripeLog() = default; void StorageStripeLog::rename(const String & new_path_to_table_data, const StorageID & new_table_id) { assert(table_path != new_path_to_table_data); { disk->moveDirectory(table_path, new_path_to_table_data); table_path = new_path_to_table_data; data_file_path = table_path + "data.bin"; index_file_path = table_path + "index.mrk"; file_checker.setPath(table_path + "sizes.json"); } renameInMemory(new_table_id); } static std::chrono::seconds getLockTimeout(const Settings & settings) { Int64 lock_timeout = settings.lock_acquire_timeout.totalSeconds(); if (settings.max_execution_time.totalSeconds() != 0 && settings.max_execution_time.totalSeconds() < lock_timeout) lock_timeout = settings.max_execution_time.totalSeconds(); return std::chrono::seconds{lock_timeout}; } static std::chrono::seconds getLockTimeout(ContextPtr context) { return getLockTimeout(context->getSettingsRef()); } Pipe StorageStripeLog::read( const Names & column_names, const StorageSnapshotPtr & storage_snapshot, SelectQueryInfo & /*query_info*/, ContextPtr context, QueryProcessingStage::Enum /*processed_stage*/, const size_t /*max_block_size*/, unsigned num_streams) { storage_snapshot->check(column_names); auto lock_timeout = getLockTimeout(context); loadIndices(lock_timeout); ReadLock lock{rwlock, lock_timeout}; if (!lock) throw Exception("Lock timeout exceeded", ErrorCodes::TIMEOUT_EXCEEDED); size_t data_file_size = file_checker.getFileSize(data_file_path); if (!data_file_size) return Pipe(std::make_shared(storage_snapshot->getSampleBlockForColumns(column_names))); auto indices_for_selected_columns = std::make_shared(indices.extractIndexForColumns(NameSet{column_names.begin(), column_names.end()})); size_t size = indices_for_selected_columns->blocks.size(); if (num_streams > size) num_streams = size; ReadSettings read_settings = context->getReadSettings(); Pipes pipes; for (size_t stream = 0; stream < num_streams; ++stream) { IndexForNativeFormat::Blocks::const_iterator begin = indices_for_selected_columns->blocks.begin(); IndexForNativeFormat::Blocks::const_iterator end = indices_for_selected_columns->blocks.begin(); std::advance(begin, stream * size / num_streams); std::advance(end, (stream + 1) * size / num_streams); pipes.emplace_back(std::make_shared( *this, storage_snapshot, column_names, read_settings, indices_for_selected_columns, begin, end, data_file_size)); } /// We do not keep read lock directly at the time of reading, because we read ranges of data that do not change. return Pipe::unitePipes(std::move(pipes)); } SinkToStoragePtr StorageStripeLog::write(const ASTPtr & /*query*/, const StorageMetadataPtr & metadata_snapshot, ContextPtr context) { WriteLock lock{rwlock, getLockTimeout(context)}; if (!lock) throw Exception("Lock timeout exceeded", ErrorCodes::TIMEOUT_EXCEEDED); return std::make_shared(*this, metadata_snapshot, std::move(lock)); } CheckResults StorageStripeLog::checkData(const ASTPtr & /* query */, ContextPtr context) { ReadLock lock{rwlock, getLockTimeout(context)}; if (!lock) throw Exception("Lock timeout exceeded", ErrorCodes::TIMEOUT_EXCEEDED); return file_checker.check(); } void StorageStripeLog::truncate(const ASTPtr &, const StorageMetadataPtr &, ContextPtr, TableExclusiveLockHolder &) { disk->clearDirectory(table_path); indices.clear(); file_checker.setEmpty(data_file_path); file_checker.setEmpty(index_file_path); indices_loaded = true; num_indices_saved = 0; } void StorageStripeLog::loadIndices(std::chrono::seconds lock_timeout) const { if (indices_loaded) return; /// We load indices with an exclusive lock (i.e. the write lock) because we don't want /// a data race between two threads trying to load indices simultaneously. WriteLock lock{rwlock, lock_timeout}; if (!lock) throw Exception("Lock timeout exceeded", ErrorCodes::TIMEOUT_EXCEEDED); loadIndices(lock); } void StorageStripeLog::loadIndices(const WriteLock & /* already locked exclusively */) const { if (indices_loaded) return; if (disk->exists(index_file_path)) { CompressedReadBufferFromFile index_in(disk->readFile(index_file_path, ReadSettings{}.adjustBufferSize(4096))); indices.read(index_in); } indices_loaded = true; num_indices_saved = indices.blocks.size(); } void StorageStripeLog::saveIndices(const WriteLock & /* already locked for writing */) { size_t num_indices = indices.blocks.size(); if (num_indices_saved == num_indices) return; size_t start = num_indices_saved; auto index_out_compressed = disk->writeFile(index_file_path, DBMS_DEFAULT_BUFFER_SIZE, WriteMode::Append); auto index_out = std::make_unique(*index_out_compressed); for (size_t i = start; i != num_indices; ++i) indices.blocks[i].write(*index_out); index_out->next(); index_out_compressed->next(); index_out_compressed->finalize(); num_indices_saved = num_indices; } void StorageStripeLog::removeUnsavedIndices(const WriteLock & /* already locked for writing */) { if (indices.blocks.size() > num_indices_saved) indices.blocks.resize(num_indices_saved); } void StorageStripeLog::saveFileSizes(const WriteLock & /* already locked for writing */) { file_checker.update(data_file_path); file_checker.update(index_file_path); file_checker.save(); } BackupEntries StorageStripeLog::backupData(ContextPtr context, const ASTs & partitions) { if (!partitions.empty()) throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Table engine {} doesn't support partitions", getName()); auto lock_timeout = getLockTimeout(context); loadIndices(lock_timeout); ReadLock lock{rwlock, lock_timeout}; if (!lock) throw Exception("Lock timeout exceeded", ErrorCodes::TIMEOUT_EXCEEDED); if (!file_checker.getFileSize(data_file_path)) return {}; auto temp_dir_owner = std::make_shared(disk, "tmp/backup_"); auto temp_dir = temp_dir_owner->getPath(); disk->createDirectories(temp_dir); BackupEntries backup_entries; /// data.bin { /// We make a copy of the data file because it can be changed later in write() or in truncate(). String data_file_name = fileName(data_file_path); String hardlink_file_path = temp_dir + "/" + data_file_name; disk->createHardLink(data_file_path, hardlink_file_path); backup_entries.emplace_back( data_file_name, std::make_unique( disk, hardlink_file_path, file_checker.getFileSize(data_file_path), std::nullopt, temp_dir_owner)); } /// index.mrk { /// We make a copy of the data file because it can be changed later in write() or in truncate(). String index_file_name = fileName(index_file_path); String hardlink_file_path = temp_dir + "/" + index_file_name; disk->createHardLink(index_file_path, hardlink_file_path); backup_entries.emplace_back( index_file_name, std::make_unique( disk, hardlink_file_path, file_checker.getFileSize(index_file_path), std::nullopt, temp_dir_owner)); } /// sizes.json String files_info_path = file_checker.getPath(); backup_entries.emplace_back(fileName(files_info_path), std::make_unique(disk, files_info_path)); /// columns.txt backup_entries.emplace_back( "columns.txt", std::make_unique(getInMemoryMetadata().getColumns().getAllPhysical().toString())); /// count.txt size_t num_rows = 0; for (const auto & block : indices.blocks) num_rows += block.num_rows; backup_entries.emplace_back("count.txt", std::make_unique(toString(num_rows))); return backup_entries; } class StripeLogRestoreTask : public IRestoreTask { using WriteLock = StorageStripeLog::WriteLock; public: StripeLogRestoreTask( const std::shared_ptr storage_, const BackupPtr & backup_, const String & data_path_in_backup_, ContextMutablePtr context_) : storage(storage_), backup(backup_), data_path_in_backup(data_path_in_backup_), context(context_) { } RestoreTasks run() override { WriteLock lock{storage->rwlock, getLockTimeout(context)}; if (!lock) throw Exception("Lock timeout exceeded", ErrorCodes::TIMEOUT_EXCEEDED); auto & file_checker = storage->file_checker; /// Load the indices if not loaded yet. We have to do that now because we're going to update these indices. storage->loadIndices(lock); /// If there were no files, save zero file sizes to be able to rollback in case of error. storage->saveFileSizes(lock); try { /// Append the data file. auto old_data_size = file_checker.getFileSize(storage->data_file_path); { const auto & data_file_path = storage->data_file_path; String file_path_in_backup = data_path_in_backup + fileName(data_file_path); auto backup_entry = backup->readFile(file_path_in_backup); const auto & disk = storage->disk; auto in = backup_entry->getReadBuffer(); auto out = disk->writeFile(data_file_path, storage->max_compress_block_size, WriteMode::Append); copyData(*in, *out); } /// Append the index. { const auto & index_file_path = storage->index_file_path; String index_path_in_backup = data_path_in_backup + fileName(index_file_path); IndexForNativeFormat extra_indices; auto backup_entry = backup->readFile(index_path_in_backup); auto index_in = backup_entry->getReadBuffer(); CompressedReadBuffer index_compressed_in{*index_in}; extra_indices.read(index_compressed_in); /// Adjust the offsets. for (auto & block : extra_indices.blocks) { for (auto & column : block.columns) column.location.offset_in_compressed_file += old_data_size; } insertAtEnd(storage->indices.blocks, std::move(extra_indices.blocks)); } /// Finish writing. storage->saveIndices(lock); storage->saveFileSizes(lock); return {}; } catch (...) { /// Rollback partial writes. file_checker.repair(); storage->removeUnsavedIndices(lock); throw; } } private: std::shared_ptr storage; BackupPtr backup; String data_path_in_backup; ContextMutablePtr context; }; RestoreTaskPtr StorageStripeLog::restoreData(ContextMutablePtr context, const ASTs & partitions, const BackupPtr & backup, const String & data_path_in_backup, const StorageRestoreSettings &, const std::shared_ptr &) { if (!partitions.empty()) throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Table engine {} doesn't support partitions", getName()); return std::make_unique( typeid_cast>(shared_from_this()), backup, data_path_in_backup, context); } std::optional StorageStripeLog::totalRows(const Settings & settings) const { auto lock_timeout = getLockTimeout(settings); loadIndices(lock_timeout); ReadLock lock{rwlock, lock_timeout}; if (!lock) throw Exception("Lock timeout exceeded", ErrorCodes::TIMEOUT_EXCEEDED); size_t total_rows = 0; for (const auto & block : indices.blocks) total_rows += block.num_rows; return total_rows; } std::optional StorageStripeLog::totalBytes(const Settings & settings) const { ReadLock lock{rwlock, getLockTimeout(settings)}; if (!lock) throw Exception("Lock timeout exceeded", ErrorCodes::TIMEOUT_EXCEEDED); return file_checker.getTotalSize(); } void registerStorageStripeLog(StorageFactory & factory) { StorageFactory::StorageFeatures features{ .supports_settings = true }; factory.registerStorage("StripeLog", [](const StorageFactory::Arguments & args) { if (!args.engine_args.empty()) throw Exception( "Engine " + args.engine_name + " doesn't support any arguments (" + toString(args.engine_args.size()) + " given)", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); String disk_name = getDiskName(*args.storage_def); DiskPtr disk = args.getContext()->getDisk(disk_name); return StorageStripeLog::create( disk, args.relative_data_path, args.table_id, args.columns, args.constraints, args.comment, args.attach, args.getContext()->getSettings().max_compress_block_size); }, features); } }