mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
455 lines
14 KiB
C++
455 lines
14 KiB
C++
#include <Processors/QueryPipeline.h>
|
|
|
|
#include <Processors/ResizeProcessor.h>
|
|
#include <Processors/ConcatProcessor.h>
|
|
#include <Processors/LimitTransform.h>
|
|
#include <Processors/Transforms/TotalsHavingTransform.h>
|
|
#include <Processors/Transforms/ExtremesTransform.h>
|
|
#include <Processors/Transforms/CreatingSetsTransform.h>
|
|
#include <Processors/Transforms/ConvertingTransform.h>
|
|
#include <Processors/Transforms/MergingAggregatedMemoryEfficientTransform.h>
|
|
#include <Processors/Formats/IOutputFormat.h>
|
|
#include <Processors/Sources/SourceFromInputStream.h>
|
|
#include <Processors/Executors/PipelineExecutor.h>
|
|
#include <Processors/Transforms/PartialSortingTransform.h>
|
|
#include <Processors/Sources/SourceFromSingleChunk.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <Common/typeid_cast.h>
|
|
#include <Common/CurrentThread.h>
|
|
#include <Processors/DelayedPortsProcessor.h>
|
|
#include <Processors/RowsBeforeLimitCounter.h>
|
|
#include <Processors/Sources/RemoteSource.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
}
|
|
|
|
void QueryPipeline::checkInitialized()
|
|
{
|
|
if (!initialized())
|
|
throw Exception("QueryPipeline wasn't initialized.", ErrorCodes::LOGICAL_ERROR);
|
|
}
|
|
|
|
void QueryPipeline::checkInitializedAndNotCompleted()
|
|
{
|
|
checkInitialized();
|
|
|
|
if (pipe.isCompleted())
|
|
throw Exception("QueryPipeline was already completed.", ErrorCodes::LOGICAL_ERROR);
|
|
}
|
|
|
|
static void checkSource(const ProcessorPtr & source, bool can_have_totals)
|
|
{
|
|
if (!source->getInputs().empty())
|
|
throw Exception("Source for query pipeline shouldn't have any input, but " + source->getName() + " has " +
|
|
toString(source->getInputs().size()) + " inputs.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (source->getOutputs().empty())
|
|
throw Exception("Source for query pipeline should have single output, but it doesn't have any",
|
|
ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (!can_have_totals && source->getOutputs().size() != 1)
|
|
throw Exception("Source for query pipeline should have single output, but " + source->getName() + " has " +
|
|
toString(source->getOutputs().size()) + " outputs.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (source->getOutputs().size() > 2)
|
|
throw Exception("Source for query pipeline should have 1 or 2 outputs, but " + source->getName() + " has " +
|
|
toString(source->getOutputs().size()) + " outputs.", ErrorCodes::LOGICAL_ERROR);
|
|
}
|
|
|
|
void QueryPipeline::init(Pipe pipe_)
|
|
{
|
|
if (initialized())
|
|
throw Exception("Pipeline has already been initialized.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (pipe_.empty())
|
|
throw Exception("Can't initialize pipeline with empty pipe.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
pipe = std::move(pipe_);
|
|
}
|
|
|
|
void QueryPipeline::reset()
|
|
{
|
|
Pipe pipe_to_destroy(std::move(pipe));
|
|
*this = QueryPipeline();
|
|
}
|
|
|
|
void QueryPipeline::addSimpleTransform(const Pipe::ProcessorGetter & getter)
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
pipe.addSimpleTransform(getter);
|
|
}
|
|
|
|
void QueryPipeline::addSimpleTransform(const Pipe::ProcessorGetterWithStreamKind & getter)
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
pipe.addSimpleTransform(getter);
|
|
}
|
|
|
|
void QueryPipeline::addTransform(ProcessorPtr transform)
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
pipe.addTransform(std::move(transform));
|
|
}
|
|
|
|
void QueryPipeline::setSinks(const Pipe::ProcessorGetterWithStreamKind & getter)
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
pipe.setSinks(getter);
|
|
}
|
|
|
|
void QueryPipeline::addDelayedStream(ProcessorPtr source)
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
|
|
checkSource(source, false);
|
|
assertBlocksHaveEqualStructure(getHeader(), source->getOutputs().front().getHeader(), "QueryPipeline");
|
|
|
|
IProcessor::PortNumbers delayed_streams = { pipe.numOutputPorts() };
|
|
pipe.addSource(std::move(source));
|
|
|
|
auto processor = std::make_shared<DelayedPortsProcessor>(getHeader(), pipe.numOutputPorts(), delayed_streams);
|
|
addTransform(std::move(processor));
|
|
}
|
|
|
|
void QueryPipeline::addMergingAggregatedMemoryEfficientTransform(AggregatingTransformParamsPtr params, size_t num_merging_processors)
|
|
{
|
|
DB::addMergingAggregatedMemoryEfficientTransform(pipe, std::move(params), num_merging_processors);
|
|
}
|
|
|
|
void QueryPipeline::resize(size_t num_streams, bool force, bool strict)
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
|
|
if (!force && num_streams == getNumStreams())
|
|
return;
|
|
|
|
ProcessorPtr resize;
|
|
|
|
if (strict)
|
|
resize = std::make_shared<StrictResizeProcessor>(getHeader(), getNumStreams(), num_streams);
|
|
else
|
|
resize = std::make_shared<ResizeProcessor>(getHeader(), getNumStreams(), num_streams);
|
|
|
|
pipe.addTransform(std::move(resize));
|
|
}
|
|
|
|
void QueryPipeline::addTotalsHavingTransform(ProcessorPtr transform)
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
|
|
if (!typeid_cast<const TotalsHavingTransform *>(transform.get()))
|
|
throw Exception("TotalsHavingTransform expected for QueryPipeline::addTotalsHavingTransform.",
|
|
ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (pipe.getTotalsPort())
|
|
throw Exception("Totals having transform was already added to pipeline.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
resize(1);
|
|
|
|
auto * totals_port = &transform->getOutputs().back();
|
|
pipe.addTransform(std::move(transform), totals_port, nullptr);
|
|
}
|
|
|
|
void QueryPipeline::addDefaultTotals()
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
|
|
if (pipe.getTotalsPort())
|
|
throw Exception("Totals having transform was already added to pipeline.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
const auto & current_header = getHeader();
|
|
Columns columns;
|
|
columns.reserve(current_header.columns());
|
|
|
|
for (size_t i = 0; i < current_header.columns(); ++i)
|
|
{
|
|
auto column = current_header.getByPosition(i).type->createColumn();
|
|
column->insertDefault();
|
|
columns.emplace_back(std::move(column));
|
|
}
|
|
|
|
auto source = std::make_shared<SourceFromSingleChunk>(current_header, Chunk(std::move(columns), 1));
|
|
pipe.addTotalsSource(std::move(source));
|
|
}
|
|
|
|
void QueryPipeline::dropTotalsAndExtremes()
|
|
{
|
|
pipe.dropTotals();
|
|
pipe.dropExtremes();
|
|
}
|
|
|
|
void QueryPipeline::addExtremesTransform()
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
|
|
if (pipe.getExtremesPort())
|
|
throw Exception("Extremes transform was already added to pipeline.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
resize(1);
|
|
auto transform = std::make_shared<ExtremesTransform>(getHeader());
|
|
auto * port = &transform->getExtremesPort();
|
|
pipe.addTransform(std::move(transform), nullptr, port);
|
|
}
|
|
|
|
void QueryPipeline::setOutputFormat(ProcessorPtr output)
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
|
|
if (output_format)
|
|
throw Exception("QueryPipeline already has output.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
resize(1);
|
|
|
|
output_format = dynamic_cast<IOutputFormat * >(output.get());
|
|
pipe.setOutputFormat(std::move(output));
|
|
|
|
initRowsBeforeLimit();
|
|
}
|
|
|
|
QueryPipeline QueryPipeline::unitePipelines(
|
|
std::vector<std::unique_ptr<QueryPipeline>> pipelines,
|
|
const Block & common_header,
|
|
size_t max_threads_limit,
|
|
Processors * collected_processors)
|
|
{
|
|
/// Should we limit the number of threads for united pipeline. True if all pipelines have max_threads != 0.
|
|
/// If true, result max_threads will be sum(max_threads).
|
|
/// Note: it may be > than settings.max_threads, so we should apply this limit again.
|
|
bool will_limit_max_threads = true;
|
|
size_t max_threads = 0;
|
|
Pipes pipes;
|
|
|
|
for (auto & pipeline_ptr : pipelines)
|
|
{
|
|
auto & pipeline = *pipeline_ptr;
|
|
pipeline.checkInitialized();
|
|
pipeline.pipe.collected_processors = collected_processors;
|
|
|
|
if (!pipeline.isCompleted())
|
|
{
|
|
pipeline.addSimpleTransform([&](const Block & header)
|
|
{
|
|
return std::make_shared<ConvertingTransform>(
|
|
header, common_header, ConvertingTransform::MatchColumnsMode::Position);
|
|
});
|
|
}
|
|
|
|
pipes.emplace_back(std::move(pipeline.pipe));
|
|
|
|
max_threads += pipeline.max_threads;
|
|
will_limit_max_threads = will_limit_max_threads && pipeline.max_threads != 0;
|
|
|
|
/// If one of pipelines uses more threads then current limit, will keep it.
|
|
/// It may happen if max_distributed_connections > max_threads
|
|
if (pipeline.max_threads > max_threads_limit)
|
|
max_threads_limit = pipeline.max_threads;
|
|
}
|
|
|
|
QueryPipeline pipeline;
|
|
pipeline.init(Pipe::unitePipes(std::move(pipes), collected_processors));
|
|
|
|
if (will_limit_max_threads)
|
|
{
|
|
pipeline.setMaxThreads(max_threads);
|
|
pipeline.limitMaxThreads(max_threads_limit);
|
|
}
|
|
|
|
return pipeline;
|
|
}
|
|
|
|
|
|
void QueryPipeline::addCreatingSetsTransform(const Block & res_header, SubqueryForSet subquery_for_set, const SizeLimits & limits, const Context & context)
|
|
{
|
|
resize(1);
|
|
|
|
auto transform = std::make_shared<CreatingSetsTransform>(
|
|
getHeader(),
|
|
res_header,
|
|
std::move(subquery_for_set),
|
|
limits,
|
|
context);
|
|
|
|
InputPort * totals_port = nullptr;
|
|
|
|
if (pipe.getTotalsPort())
|
|
totals_port = transform->addTotalsPort();
|
|
|
|
pipe.addTransform(std::move(transform), totals_port, nullptr);
|
|
}
|
|
|
|
void QueryPipeline::addPipelineBefore(QueryPipeline pipeline)
|
|
{
|
|
checkInitializedAndNotCompleted();
|
|
assertBlocksHaveEqualStructure(getHeader(), pipeline.getHeader(), "QueryPipeline");
|
|
|
|
IProcessor::PortNumbers delayed_streams(pipe.numOutputPorts());
|
|
for (size_t i = 0; i < delayed_streams.size(); ++i)
|
|
delayed_streams[i] = i;
|
|
|
|
auto * collected_processors = pipe.collected_processors;
|
|
|
|
Pipes pipes;
|
|
pipes.emplace_back(std::move(pipe));
|
|
pipes.emplace_back(QueryPipeline::getPipe(std::move(pipeline)));
|
|
pipe = Pipe::unitePipes(std::move(pipes), collected_processors);
|
|
|
|
auto processor = std::make_shared<DelayedPortsProcessor>(getHeader(), pipe.numOutputPorts(), delayed_streams);
|
|
addTransform(std::move(processor));
|
|
}
|
|
|
|
void QueryPipeline::setProgressCallback(const ProgressCallback & callback)
|
|
{
|
|
for (auto & processor : pipe.processors)
|
|
{
|
|
if (auto * source = dynamic_cast<ISourceWithProgress *>(processor.get()))
|
|
source->setProgressCallback(callback);
|
|
}
|
|
}
|
|
|
|
void QueryPipeline::setProcessListElement(QueryStatus * elem)
|
|
{
|
|
process_list_element = elem;
|
|
|
|
for (auto & processor : pipe.processors)
|
|
{
|
|
if (auto * source = dynamic_cast<ISourceWithProgress *>(processor.get()))
|
|
source->setProcessListElement(elem);
|
|
}
|
|
}
|
|
|
|
void QueryPipeline::initRowsBeforeLimit()
|
|
{
|
|
RowsBeforeLimitCounterPtr rows_before_limit_at_least;
|
|
|
|
/// TODO: add setRowsBeforeLimitCounter as virtual method to IProcessor.
|
|
std::vector<LimitTransform *> limits;
|
|
std::vector<SourceFromInputStream *> sources;
|
|
std::vector<RemoteSource *> remote_sources;
|
|
|
|
std::unordered_set<IProcessor *> visited;
|
|
|
|
struct QueuedEntry
|
|
{
|
|
IProcessor * processor;
|
|
bool visited_limit;
|
|
};
|
|
|
|
std::queue<QueuedEntry> queue;
|
|
|
|
queue.push({ output_format, false });
|
|
visited.emplace(output_format);
|
|
|
|
while (!queue.empty())
|
|
{
|
|
auto * processor = queue.front().processor;
|
|
auto visited_limit = queue.front().visited_limit;
|
|
queue.pop();
|
|
|
|
if (!visited_limit)
|
|
{
|
|
if (auto * limit = typeid_cast<LimitTransform *>(processor))
|
|
{
|
|
visited_limit = true;
|
|
limits.emplace_back(limit);
|
|
}
|
|
|
|
if (auto * source = typeid_cast<SourceFromInputStream *>(processor))
|
|
sources.emplace_back(source);
|
|
|
|
if (auto * source = typeid_cast<RemoteSource *>(processor))
|
|
remote_sources.emplace_back(source);
|
|
}
|
|
else if (auto * sorting = typeid_cast<PartialSortingTransform *>(processor))
|
|
{
|
|
if (!rows_before_limit_at_least)
|
|
rows_before_limit_at_least = std::make_shared<RowsBeforeLimitCounter>();
|
|
|
|
sorting->setRowsBeforeLimitCounter(rows_before_limit_at_least);
|
|
|
|
/// Don't go to children. Take rows_before_limit from last PartialSortingTransform.
|
|
continue;
|
|
}
|
|
|
|
/// Skip totals and extremes port for output format.
|
|
if (auto * format = dynamic_cast<IOutputFormat *>(processor))
|
|
{
|
|
auto * child_processor = &format->getPort(IOutputFormat::PortKind::Main).getOutputPort().getProcessor();
|
|
if (visited.emplace(child_processor).second)
|
|
queue.push({ child_processor, visited_limit });
|
|
|
|
continue;
|
|
}
|
|
|
|
for (auto & child_port : processor->getInputs())
|
|
{
|
|
auto * child_processor = &child_port.getOutputPort().getProcessor();
|
|
if (visited.emplace(child_processor).second)
|
|
queue.push({ child_processor, visited_limit });
|
|
}
|
|
}
|
|
|
|
if (!rows_before_limit_at_least && (!limits.empty() || !sources.empty() || !remote_sources.empty()))
|
|
{
|
|
rows_before_limit_at_least = std::make_shared<RowsBeforeLimitCounter>();
|
|
|
|
for (auto & limit : limits)
|
|
limit->setRowsBeforeLimitCounter(rows_before_limit_at_least);
|
|
|
|
for (auto & source : sources)
|
|
source->setRowsBeforeLimitCounter(rows_before_limit_at_least);
|
|
|
|
for (auto & source : remote_sources)
|
|
source->setRowsBeforeLimitCounter(rows_before_limit_at_least);
|
|
}
|
|
|
|
/// If there is a limit, then enable rows_before_limit_at_least
|
|
/// It is needed when zero rows is read, but we still want rows_before_limit_at_least in result.
|
|
if (!limits.empty())
|
|
rows_before_limit_at_least->add(0);
|
|
|
|
if (rows_before_limit_at_least)
|
|
output_format->setRowsBeforeLimitCounter(rows_before_limit_at_least);
|
|
}
|
|
|
|
PipelineExecutorPtr QueryPipeline::execute()
|
|
{
|
|
if (!isCompleted())
|
|
throw Exception("Cannot execute pipeline because it is not completed.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
return std::make_shared<PipelineExecutor>(pipe.processors, process_list_element);
|
|
}
|
|
|
|
void QueryPipeline::setCollectedProcessors(Processors * processors)
|
|
{
|
|
pipe.collected_processors = processors;
|
|
}
|
|
|
|
|
|
QueryPipelineProcessorsCollector::QueryPipelineProcessorsCollector(QueryPipeline & pipeline_, IQueryPlanStep * step_)
|
|
: pipeline(pipeline_), step(step_)
|
|
{
|
|
pipeline.setCollectedProcessors(&processors);
|
|
}
|
|
|
|
QueryPipelineProcessorsCollector::~QueryPipelineProcessorsCollector()
|
|
{
|
|
pipeline.setCollectedProcessors(nullptr);
|
|
}
|
|
|
|
Processors QueryPipelineProcessorsCollector::detachProcessors(size_t group)
|
|
{
|
|
for (auto & processor : processors)
|
|
processor->setQueryPlanStep(step, group);
|
|
|
|
Processors res;
|
|
res.swap(processors);
|
|
return res;
|
|
}
|
|
|
|
}
|