mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
#include <Storages/MergeTree/MergeTreeBlockOutputStream.h>
|
|
#include <Storages/StorageMergeTree.h>
|
|
#include <Interpreters/PartLog.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
Block MergeTreeBlockOutputStream::getHeader() const
|
|
{
|
|
return metadata_snapshot->getSampleBlock();
|
|
}
|
|
|
|
|
|
void MergeTreeBlockOutputStream::write(const Block & block)
|
|
{
|
|
storage.delayInsertOrThrowIfNeeded();
|
|
|
|
auto part_blocks = storage.writer.splitBlockIntoParts(block, max_parts_per_block, metadata_snapshot);
|
|
for (auto & current_block : part_blocks)
|
|
{
|
|
Stopwatch watch;
|
|
|
|
MergeTreeData::MutableDataPartPtr part = storage.writer.writeTempPart(current_block, metadata_snapshot);
|
|
storage.renameTempPartAndAdd(part, &storage.increment);
|
|
|
|
PartLog::addNewPart(storage.global_context, part, watch.elapsed());
|
|
|
|
/// Initiate async merge - it will be done if it's good time for merge and if there are space in 'background_pool'.
|
|
if (storage.merging_mutating_task_handle)
|
|
storage.merging_mutating_task_handle->signalReadyToRun();
|
|
}
|
|
}
|
|
|
|
}
|