mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
78 lines
2.4 KiB
C++
78 lines
2.4 KiB
C++
#include <Common/ClickHouseRevision.h>
|
|
|
|
#include <DataStreams/BlocksListBlockInputStream.h>
|
|
#include <DataStreams/MergingAggregatedMemoryEfficientBlockInputStream.h>
|
|
#include <DataStreams/AggregatingBlockInputStream.h>
|
|
#include <DataStreams/NativeBlockInputStream.h>
|
|
|
|
|
|
namespace ProfileEvents
|
|
{
|
|
extern const Event ExternalAggregationMerge;
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
|
|
Block AggregatingBlockInputStream::getHeader() const
|
|
{
|
|
return aggregator.getHeader(final);
|
|
}
|
|
|
|
|
|
Block AggregatingBlockInputStream::readImpl()
|
|
{
|
|
if (!executed)
|
|
{
|
|
executed = true;
|
|
AggregatedDataVariantsPtr data_variants = std::make_shared<AggregatedDataVariants>();
|
|
|
|
Aggregator::CancellationHook hook = [&]() { return this->isCancelled(); };
|
|
aggregator.setCancellationHook(hook);
|
|
|
|
aggregator.execute(children.back(), *data_variants);
|
|
|
|
if (!aggregator.hasTemporaryFiles())
|
|
{
|
|
ManyAggregatedDataVariants many_data { data_variants };
|
|
impl = aggregator.mergeAndConvertToBlocks(many_data, final, 1);
|
|
}
|
|
else
|
|
{
|
|
/** If there are temporary files with partially-aggregated data on the disk,
|
|
* then read and merge them, spending the minimum amount of memory.
|
|
*/
|
|
|
|
ProfileEvents::increment(ProfileEvents::ExternalAggregationMerge);
|
|
|
|
if (!isCancelled())
|
|
{
|
|
/// Flush data in the RAM to disk also. It's easier than merging on-disk and RAM data.
|
|
if (data_variants->size()) // NOLINT
|
|
aggregator.writeToTemporaryFile(*data_variants);
|
|
}
|
|
|
|
const auto & files = aggregator.getTemporaryFiles();
|
|
BlockInputStreams input_streams;
|
|
for (const auto & file : files.files)
|
|
{
|
|
temporary_inputs.emplace_back(std::make_unique<TemporaryFileStream>(file->path()));
|
|
input_streams.emplace_back(temporary_inputs.back()->block_in);
|
|
}
|
|
|
|
LOG_TRACE(log, "Will merge " << files.files.size() << " temporary files of size "
|
|
<< (files.sum_size_compressed / 1048576.0) << " MiB compressed, "
|
|
<< (files.sum_size_uncompressed / 1048576.0) << " MiB uncompressed.");
|
|
|
|
impl = std::make_unique<MergingAggregatedMemoryEfficientBlockInputStream>(input_streams, params, final, 1, 1);
|
|
}
|
|
}
|
|
|
|
if (isCancelledOrThrowIfKilled() || !impl)
|
|
return {};
|
|
|
|
return impl->read();
|
|
}
|
|
|
|
}
|