2017-06-25 00:01:10 +00:00
|
|
|
#include <Storages/MergeTree/MergeTreeBlockOutputStream.h>
|
|
|
|
#include <Storages/StorageMergeTree.h>
|
|
|
|
#include <Interpreters/PartLog.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2018-02-19 00:45:32 +00:00
|
|
|
Block MergeTreeBlockOutputStream::getHeader() const
|
|
|
|
{
|
|
|
|
return storage.getSampleBlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-25 00:01:10 +00:00
|
|
|
void MergeTreeBlockOutputStream::write(const Block & block)
|
|
|
|
{
|
2019-05-03 02:00:57 +00:00
|
|
|
storage.delayInsertOrThrowIfNeeded();
|
2017-06-25 00:01:10 +00:00
|
|
|
|
2019-03-29 09:33:39 +00:00
|
|
|
auto part_blocks = storage.writer.splitBlockIntoParts(block, max_parts_per_block);
|
2017-06-25 00:01:10 +00:00
|
|
|
for (auto & current_block : part_blocks)
|
|
|
|
{
|
|
|
|
Stopwatch watch;
|
|
|
|
|
|
|
|
MergeTreeData::MutableDataPartPtr part = storage.writer.writeTempPart(current_block);
|
2019-05-03 02:00:57 +00:00
|
|
|
storage.renameTempPartAndAdd(part, &storage.increment);
|
2017-06-25 00:01:10 +00:00
|
|
|
|
2019-01-04 12:10:00 +00:00
|
|
|
PartLog::addNewPart(storage.global_context, part, watch.elapsed());
|
2017-06-25 00:01:10 +00:00
|
|
|
|
|
|
|
/// Initiate async merge - it will be done if it's good time for merge and if there are space in 'background_pool'.
|
2019-09-05 13:12:29 +00:00
|
|
|
if (storage.merging_mutating_task_handle)
|
|
|
|
storage.merging_mutating_task_handle->wake();
|
2017-06-25 00:01:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|