2012-07-16 20:25:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-06-06 17:18:32 +00:00
|
|
|
#include <ext/shared_ptr_helper.h>
|
2016-08-26 21:25:05 +00:00
|
|
|
|
2018-11-19 14:31:16 +00:00
|
|
|
#include <Core/Names.h>
|
2019-05-09 14:25:18 +00:00
|
|
|
#include <Storages/AlterCommands.h>
|
2018-03-06 20:18:34 +00:00
|
|
|
#include <Storages/IStorage.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/MergeTree/MergeTreeData.h>
|
|
|
|
#include <Storages/MergeTree/MergeTreeDataSelectExecutor.h>
|
|
|
|
#include <Storages/MergeTree/MergeTreeDataWriter.h>
|
2018-04-20 16:18:16 +00:00
|
|
|
#include <Storages/MergeTree/MergeTreeDataMergerMutator.h>
|
2019-08-19 14:40:12 +00:00
|
|
|
#include <Storages/MergeTree/MergeTreePartsMover.h>
|
2018-03-30 19:25:37 +00:00
|
|
|
#include <Storages/MergeTree/MergeTreeMutationEntry.h>
|
2018-07-06 19:04:54 +00:00
|
|
|
#include <Storages/MergeTree/MergeTreeMutationStatus.h>
|
2020-05-04 20:15:38 +00:00
|
|
|
#include <Disks/StoragePolicy.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/MergeTree/BackgroundProcessingPool.h>
|
2017-05-10 06:49:19 +00:00
|
|
|
#include <Common/SimpleIncrement.h>
|
2019-08-21 16:02:13 +00:00
|
|
|
#include <Core/BackgroundSchedulePool.h>
|
2015-04-16 06:12:35 +00:00
|
|
|
|
2012-07-16 20:25:19 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/** See the description of the data structure in MergeTreeData.
|
2012-07-16 20:25:19 +00:00
|
|
|
*/
|
2020-03-19 23:48:53 +00:00
|
|
|
class StorageMergeTree final : public ext::shared_ptr_helper<StorageMergeTree>, public MergeTreeData
|
2012-07-16 20:25:19 +00:00
|
|
|
{
|
2019-08-26 19:07:29 +00:00
|
|
|
friend struct ext::shared_ptr_helper<StorageMergeTree>;
|
2012-07-16 20:25:19 +00:00
|
|
|
public:
|
2017-06-06 17:06:14 +00:00
|
|
|
void startup() override;
|
2017-04-01 07:20:54 +00:00
|
|
|
void shutdown() override;
|
|
|
|
~StorageMergeTree() override;
|
|
|
|
|
2019-05-03 02:00:57 +00:00
|
|
|
std::string getName() const override { return merging_params.getModeName() + "MergeTree"; }
|
2018-03-19 14:29:40 +00:00
|
|
|
|
2019-12-12 10:49:15 +00:00
|
|
|
bool supportsParallelInsert() const override { return true; }
|
|
|
|
|
2018-03-19 14:29:40 +00:00
|
|
|
bool supportsIndexForIn() const override { return true; }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-02-19 16:07:28 +00:00
|
|
|
Pipes read(
|
2017-04-01 07:20:54 +00:00
|
|
|
const Names & column_names,
|
2017-07-15 03:48:36 +00:00
|
|
|
const SelectQueryInfo & query_info,
|
2017-04-01 07:20:54 +00:00
|
|
|
const Context & context,
|
2018-04-19 14:47:09 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
2019-02-18 23:38:44 +00:00
|
|
|
size_t max_block_size,
|
2017-06-02 15:54:39 +00:00
|
|
|
unsigned num_streams) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2019-10-28 17:27:43 +00:00
|
|
|
std::optional<UInt64> totalRows() const override;
|
2020-03-29 08:50:27 +00:00
|
|
|
std::optional<UInt64> totalBytes() const override;
|
2019-10-28 17:27:43 +00:00
|
|
|
|
2019-02-27 18:26:24 +00:00
|
|
|
BlockOutputStreamPtr write(const ASTPtr & query, const Context & context) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/** Perform the next step in combining the parts.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
2017-09-06 20:34:26 +00:00
|
|
|
bool optimize(const ASTPtr & query, const ASTPtr & partition, bool final, bool deduplicate, const Context & context) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-11-26 14:43:40 +00:00
|
|
|
void alterPartition(const ASTPtr & query, const PartitionCommands & commands, const Context & context) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-03-30 19:25:37 +00:00
|
|
|
void mutate(const MutationCommands & commands, const Context & context) override;
|
2019-12-12 16:24:03 +00:00
|
|
|
|
|
|
|
/// Return introspection information about currently processing or recently processed mutations.
|
2019-05-03 02:00:57 +00:00
|
|
|
std::vector<MergeTreeMutationStatus> getMutationsStatus() const override;
|
2019-12-12 16:24:03 +00:00
|
|
|
|
2019-02-04 13:04:02 +00:00
|
|
|
CancellationCode killMutation(const String & mutation_id) override;
|
2018-07-06 19:04:54 +00:00
|
|
|
|
2020-01-22 11:30:11 +00:00
|
|
|
void drop() override;
|
2019-08-27 20:43:08 +00:00
|
|
|
void truncate(const ASTPtr &, const Context &, TableStructureWriteLockHolder &) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2019-12-26 18:17:05 +00:00
|
|
|
void alter(const AlterCommands & commands, const Context & context, TableStructureWriteLockHolder & table_lock_holder) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-08-03 09:39:01 +00:00
|
|
|
void checkTableCanBeDropped() const override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-08-03 09:39:01 +00:00
|
|
|
void checkPartitionCanBeDropped(const ASTPtr & partition) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-05-28 15:37:30 +00:00
|
|
|
ActionLock getActionLock(StorageActionBlockType action_type) override;
|
2018-05-21 13:49:54 +00:00
|
|
|
|
2019-07-03 13:17:19 +00:00
|
|
|
CheckResults checkData(const ASTPtr & query, const Context & context) override;
|
2019-07-03 08:49:52 +00:00
|
|
|
|
2012-07-16 20:25:19 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2019-12-16 15:51:15 +00:00
|
|
|
/// Mutex and condvar for synchronous mutations wait
|
|
|
|
std::mutex mutation_wait_mutex;
|
|
|
|
std::condition_variable mutation_wait_event;
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
MergeTreeDataSelectExecutor reader;
|
|
|
|
MergeTreeDataWriter writer;
|
2018-03-30 19:25:37 +00:00
|
|
|
MergeTreeDataMergerMutator merger_mutator;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// For block numbers.
|
|
|
|
SimpleIncrement increment{0};
|
|
|
|
|
|
|
|
/// For clearOldParts, clearOldTemporaryDirectories.
|
2018-02-25 02:43:27 +00:00
|
|
|
AtomicStopwatch time_after_previous_cleanup;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2019-09-02 11:35:53 +00:00
|
|
|
/// Mutex for parts currently processing in background
|
|
|
|
/// merging (also with TTL), mutating or moving.
|
2019-08-15 09:43:31 +00:00
|
|
|
mutable std::mutex currently_processing_in_background_mutex;
|
2019-09-02 11:35:53 +00:00
|
|
|
|
|
|
|
/// Parts that currently participate in merge or mutation.
|
|
|
|
/// This set have to be used with `currently_processing_in_background_mutex`.
|
|
|
|
DataParts currently_merging_mutating_parts;
|
|
|
|
|
|
|
|
|
2019-01-14 12:25:25 +00:00
|
|
|
std::map<String, MergeTreeMutationEntry> current_mutations_by_id;
|
|
|
|
std::multimap<Int64, MergeTreeMutationEntry &> current_mutations_by_version;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
std::atomic<bool> shutdown_called {false};
|
|
|
|
|
2019-09-02 11:35:53 +00:00
|
|
|
/// Task handler for merges, mutations and moves.
|
2019-09-05 13:12:29 +00:00
|
|
|
BackgroundProcessingPool::TaskHandle merging_mutating_task_handle;
|
|
|
|
BackgroundProcessingPool::TaskHandle moving_task_handle;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-07-11 12:43:55 +00:00
|
|
|
void loadMutations();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-11-04 03:20:18 +00:00
|
|
|
/** Determines what parts should be merged and merges it.
|
|
|
|
* If aggressive - when selects parts don't takes into account their ratio size and novelty (used for OPTIMIZE query).
|
|
|
|
* Returns true if merge is finished successfully.
|
|
|
|
*/
|
2019-05-03 02:00:57 +00:00
|
|
|
bool merge(bool aggressive, const String & partition_id, bool final, bool deduplicate, String * out_disable_reason = nullptr);
|
2017-11-04 03:20:18 +00:00
|
|
|
|
2019-09-05 13:12:29 +00:00
|
|
|
BackgroundProcessingPoolTaskResult movePartsTask();
|
2019-06-19 17:56:41 +00:00
|
|
|
|
2020-04-03 11:09:27 +00:00
|
|
|
/// Allocate block number for new mutation, write mutation to disk
|
|
|
|
/// and into in-memory structures. Wake up merge-mutation task.
|
|
|
|
Int64 startMutation(const MutationCommands & commands, String & mutation_file_name);
|
|
|
|
/// Wait until mutation with version will finish mutation for all parts
|
2020-04-03 16:33:25 +00:00
|
|
|
void waitForMutation(Int64 version, const String & file_name);
|
2020-03-18 10:02:57 +00:00
|
|
|
|
2018-07-09 15:34:11 +00:00
|
|
|
/// Try and find a single part to mutate and mutate it. If some part was successfully mutated, return true.
|
|
|
|
bool tryMutatePart();
|
|
|
|
|
2019-09-05 13:12:29 +00:00
|
|
|
BackgroundProcessingPoolTaskResult mergeMutateTask();
|
2017-11-04 03:20:18 +00:00
|
|
|
|
2018-03-30 19:25:37 +00:00
|
|
|
Int64 getCurrentMutationVersion(
|
2019-05-03 02:00:57 +00:00
|
|
|
const DataPartPtr & part,
|
2019-08-15 09:43:31 +00:00
|
|
|
std::lock_guard<std::mutex> & /* currently_processing_in_background_mutex_lock */) const;
|
2018-03-30 19:25:37 +00:00
|
|
|
|
2019-07-29 09:15:46 +00:00
|
|
|
void clearOldMutations(bool truncate = false);
|
2017-11-04 03:20:18 +00:00
|
|
|
|
2018-11-13 13:48:53 +00:00
|
|
|
// Partition helpers
|
|
|
|
void dropPartition(const ASTPtr & partition, bool detach, const Context & context);
|
|
|
|
void attachPartition(const ASTPtr & partition, bool part, const Context & context);
|
|
|
|
void replacePartitionFrom(const StoragePtr & source_table, const ASTPtr & partition, bool replace, const Context & context);
|
2019-09-17 11:59:09 +00:00
|
|
|
void movePartitionToTable(const StoragePtr & dest_table, const ASTPtr & partition, const Context & context);
|
2019-09-05 13:12:29 +00:00
|
|
|
bool partIsAssignedToBackgroundOperation(const DataPartPtr & part) const override;
|
|
|
|
|
2019-12-16 15:51:15 +00:00
|
|
|
/// Just checks versions of each active data part
|
|
|
|
bool isMutationDone(Int64 mutation_version) const;
|
2018-11-13 13:48:53 +00:00
|
|
|
|
2018-05-21 13:49:54 +00:00
|
|
|
friend class MergeTreeBlockOutputStream;
|
|
|
|
friend class MergeTreeData;
|
|
|
|
friend struct CurrentlyMergingPartsTagger;
|
|
|
|
|
2017-11-04 03:20:18 +00:00
|
|
|
protected:
|
2019-07-24 12:56:39 +00:00
|
|
|
|
2018-11-26 00:56:50 +00:00
|
|
|
/** Attach the table with the appropriate name, along the appropriate path (with / at the end),
|
2017-06-06 18:36:13 +00:00
|
|
|
* (correctness of names and paths are not checked)
|
|
|
|
* consisting of the specified columns.
|
|
|
|
*
|
2018-11-06 18:25:36 +00:00
|
|
|
* See MergeTreeData constructor for comments on parameters.
|
2017-06-06 18:36:13 +00:00
|
|
|
*/
|
2017-04-01 07:20:54 +00:00
|
|
|
StorageMergeTree(
|
2019-12-04 16:06:55 +00:00
|
|
|
const StorageID & table_id_,
|
2019-10-28 20:12:14 +00:00
|
|
|
const String & relative_data_path_,
|
2019-12-27 16:34:50 +00:00
|
|
|
const StorageInMemoryMetadata & metadata,
|
2017-04-01 07:20:54 +00:00
|
|
|
bool attach,
|
|
|
|
Context & context_,
|
2017-09-08 18:11:09 +00:00
|
|
|
const String & date_column_name,
|
2019-05-03 02:00:57 +00:00
|
|
|
const MergingParams & merging_params_,
|
2019-08-26 14:24:29 +00:00
|
|
|
std::unique_ptr<MergeTreeSettings> settings_,
|
2017-09-19 20:42:42 +00:00
|
|
|
bool has_force_restore_data_flag);
|
2020-03-24 17:05:38 +00:00
|
|
|
|
2020-04-02 18:24:11 +00:00
|
|
|
MutationCommands getFirtsAlterMutationCommandsForPart(const DataPartPtr & part) const override;
|
2012-07-16 20:25:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|