2019-03-26 18:28:37 +00:00
|
|
|
#include <Processors/QueryPipeline.h>
|
|
|
|
|
|
|
|
#include <Processors/ResizeProcessor.h>
|
|
|
|
#include <Processors/ConcatProcessor.h>
|
|
|
|
#include <Processors/NullSink.h>
|
2019-04-08 14:55:20 +00:00
|
|
|
#include <Processors/LimitTransform.h>
|
2019-03-26 18:28:37 +00:00
|
|
|
#include <Processors/Sources/NullSource.h>
|
|
|
|
#include <Processors/Transforms/TotalsHavingTransform.h>
|
2019-04-05 11:34:11 +00:00
|
|
|
#include <Processors/Transforms/ExtremesTransform.h>
|
2019-03-26 18:28:37 +00:00
|
|
|
#include <Processors/Transforms/CreatingSetsTransform.h>
|
|
|
|
#include <Processors/Transforms/ConvertingTransform.h>
|
|
|
|
#include <Processors/Formats/IOutputFormat.h>
|
|
|
|
#include <Processors/Sources/SourceFromInputStream.h>
|
|
|
|
#include <Processors/Executors/PipelineExecutor.h>
|
2019-04-18 14:55:43 +00:00
|
|
|
#include <Processors/Transforms/PartialSortingTransform.h>
|
|
|
|
#include <Processors/Sources/SourceFromSingleChunk.h>
|
2019-03-26 18:28:37 +00:00
|
|
|
|
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Common/typeid_cast.h>
|
2019-04-18 14:55:43 +00:00
|
|
|
#include <Common/CurrentThread.h>
|
2019-03-26 18:28:37 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
void QueryPipeline::checkInitialized()
|
|
|
|
{
|
|
|
|
if (!initialized())
|
|
|
|
throw Exception("QueryPipeline wasn't initialized.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
|
|
|
|
2019-04-17 14:38:16 +00:00
|
|
|
void QueryPipeline::checkSource(const ProcessorPtr & source, bool can_have_totals)
|
2019-03-26 18:28:37 +00:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
2019-04-17 14:38:16 +00:00
|
|
|
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)
|
2019-03-26 18:28:37 +00:00
|
|
|
throw Exception("Source for query pipeline should have single output, but " + source->getName() + " has " +
|
|
|
|
toString(source->getOutputs().size()) + " outputs.", ErrorCodes::LOGICAL_ERROR);
|
2019-04-17 14:38:16 +00:00
|
|
|
|
|
|
|
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);
|
2019-03-26 18:28:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::init(Processors sources)
|
|
|
|
{
|
|
|
|
if (initialized())
|
|
|
|
throw Exception("Pipeline has already been initialized.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
if (sources.empty())
|
|
|
|
throw Exception("Can't initialize pipeline with empty source list.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-04-17 14:38:16 +00:00
|
|
|
std::vector<OutputPort *> totals;
|
|
|
|
|
2019-03-26 18:28:37 +00:00
|
|
|
for (auto & source : sources)
|
|
|
|
{
|
2019-04-17 14:38:16 +00:00
|
|
|
checkSource(source, true);
|
2019-03-26 18:28:37 +00:00
|
|
|
|
|
|
|
auto & header = source->getOutputs().front().getHeader();
|
|
|
|
|
2019-04-05 10:52:07 +00:00
|
|
|
if (current_header)
|
2019-03-26 18:28:37 +00:00
|
|
|
assertBlocksHaveEqualStructure(current_header, header, "QueryPipeline");
|
|
|
|
else
|
|
|
|
current_header = header;
|
|
|
|
|
2019-04-17 14:38:16 +00:00
|
|
|
if (source->getOutputs().size() > 1)
|
|
|
|
{
|
|
|
|
assertBlocksHaveEqualStructure(current_header, source->getOutputs().back().getHeader(), "QueryPipeline");
|
|
|
|
totals.emplace_back(&source->getOutputs().back());
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:28:37 +00:00
|
|
|
streams.emplace_back(&source->getOutputs().front());
|
|
|
|
processors.emplace_back(std::move(source));
|
|
|
|
}
|
2019-04-17 14:38:16 +00:00
|
|
|
|
|
|
|
if (!totals.empty())
|
|
|
|
{
|
|
|
|
if (totals.size() == 1)
|
|
|
|
totals_having_port = totals.back();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto resize = std::make_shared<ResizeProcessor>(current_header, totals.size(), 1);
|
|
|
|
auto in = resize->getInputs().begin();
|
|
|
|
for (auto & total : totals)
|
|
|
|
connect(*total, *(in++));
|
|
|
|
|
|
|
|
totals_having_port = &resize->getOutputs().front();
|
|
|
|
processors.emplace_back(std::move(resize));
|
|
|
|
}
|
|
|
|
}
|
2019-03-26 18:28:37 +00:00
|
|
|
}
|
|
|
|
|
2019-04-09 10:17:25 +00:00
|
|
|
static ProcessorPtr callProcessorGetter(
|
|
|
|
const Block & header, const QueryPipeline::ProcessorGetter & getter, QueryPipeline::StreamType)
|
|
|
|
{
|
|
|
|
return getter(header);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ProcessorPtr callProcessorGetter(
|
|
|
|
const Block & header, const QueryPipeline::ProcessorGetterWithStreamKind & getter, QueryPipeline::StreamType kind)
|
|
|
|
{
|
|
|
|
return getter(header, kind);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename TProcessorGetter>
|
|
|
|
void QueryPipeline::addSimpleTransformImpl(const TProcessorGetter & getter)
|
2019-03-26 18:28:37 +00:00
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
|
|
|
Block header;
|
|
|
|
|
2019-04-09 10:17:25 +00:00
|
|
|
auto add_transform = [&](OutputPort *& stream, StreamType stream_type)
|
2019-03-26 18:28:37 +00:00
|
|
|
{
|
2019-04-05 17:44:18 +00:00
|
|
|
if (!stream)
|
|
|
|
return;
|
|
|
|
|
2019-04-25 14:52:51 +00:00
|
|
|
auto transform = callProcessorGetter(stream->getHeader(), getter, stream_type);
|
2019-03-26 18:28:37 +00:00
|
|
|
|
2019-04-18 12:43:13 +00:00
|
|
|
if (transform)
|
|
|
|
{
|
|
|
|
if (transform->getInputs().size() != 1)
|
|
|
|
throw Exception("Processor for query pipeline transform should have single input, "
|
|
|
|
"but " + transform->getName() + " has " +
|
|
|
|
toString(transform->getInputs().size()) + " inputs.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
if (transform->getOutputs().size() != 1)
|
|
|
|
throw Exception("Processor for query pipeline transform should have single output, "
|
|
|
|
"but " + transform->getName() + " has " +
|
|
|
|
toString(transform->getOutputs().size()) + " outputs.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
2019-03-26 18:28:37 +00:00
|
|
|
|
2019-04-18 12:43:13 +00:00
|
|
|
auto & out_header = transform ? transform->getOutputs().front().getHeader()
|
|
|
|
: stream->getHeader();
|
2019-04-30 17:12:43 +00:00
|
|
|
|
|
|
|
if (stream_type != StreamType::Totals)
|
|
|
|
{
|
|
|
|
if (header)
|
|
|
|
assertBlocksHaveEqualStructure(header, out_header, "QueryPipeline");
|
|
|
|
else
|
|
|
|
header = out_header;
|
|
|
|
}
|
2019-03-26 18:28:37 +00:00
|
|
|
|
2019-04-18 12:43:13 +00:00
|
|
|
if (transform)
|
|
|
|
{
|
|
|
|
connect(*stream, transform->getInputs().front());
|
|
|
|
stream = &transform->getOutputs().front();
|
|
|
|
processors.emplace_back(std::move(transform));
|
|
|
|
}
|
2019-04-05 17:44:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for (auto & stream : streams)
|
2019-04-09 10:17:25 +00:00
|
|
|
add_transform(stream, StreamType::Main);
|
2019-04-05 17:44:18 +00:00
|
|
|
|
2019-04-09 10:17:25 +00:00
|
|
|
add_transform(delayed_stream_port, StreamType::Main);
|
|
|
|
add_transform(totals_having_port, StreamType::Totals);
|
|
|
|
add_transform(extremes_port, StreamType::Extremes);
|
2019-03-26 18:28:37 +00:00
|
|
|
|
|
|
|
current_header = std::move(header);
|
|
|
|
}
|
|
|
|
|
2019-04-09 10:17:25 +00:00
|
|
|
void QueryPipeline::addSimpleTransform(const ProcessorGetter & getter)
|
|
|
|
{
|
|
|
|
addSimpleTransformImpl(getter);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::addSimpleTransform(const ProcessorGetterWithStreamKind & getter)
|
|
|
|
{
|
|
|
|
addSimpleTransformImpl(getter);
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:28:37 +00:00
|
|
|
void QueryPipeline::addPipe(Processors pipe)
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
concatDelayedStream();
|
|
|
|
|
|
|
|
if (pipe.empty())
|
|
|
|
throw Exception("Can't add empty processors list to QueryPipeline.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
auto & first = pipe.front();
|
|
|
|
auto & last = pipe.back();
|
|
|
|
|
|
|
|
auto num_inputs = first->getInputs().size();
|
|
|
|
|
|
|
|
if (num_inputs != streams.size())
|
|
|
|
throw Exception("Can't add processors to QueryPipeline because first processor has " + toString(num_inputs) +
|
|
|
|
" input ports, but QueryPipeline has " + toString(streams.size()) + " streams.",
|
|
|
|
ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
auto stream = streams.begin();
|
|
|
|
for (auto & input : first->getInputs())
|
|
|
|
connect(**(stream++), input);
|
|
|
|
|
|
|
|
Block header;
|
|
|
|
streams.clear();
|
|
|
|
streams.reserve(last->getOutputs().size());
|
|
|
|
for (auto & output : last->getOutputs())
|
|
|
|
{
|
|
|
|
streams.emplace_back(&output);
|
|
|
|
if (header)
|
|
|
|
assertBlocksHaveEqualStructure(header, output.getHeader(), "QueryPipeline");
|
|
|
|
else
|
|
|
|
header = output.getHeader();
|
|
|
|
}
|
|
|
|
|
|
|
|
processors.insert(processors.end(), pipe.begin(), pipe.end());
|
|
|
|
current_header = std::move(header);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::addDelayedStream(ProcessorPtr source)
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
2019-04-08 09:31:49 +00:00
|
|
|
if (delayed_stream_port)
|
2019-03-26 18:28:37 +00:00
|
|
|
throw Exception("QueryPipeline already has stream with non joined data.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-04-17 14:58:34 +00:00
|
|
|
checkSource(source, false);
|
2019-03-26 18:28:37 +00:00
|
|
|
assertBlocksHaveEqualStructure(current_header, source->getOutputs().front().getHeader(), "QueryPipeline");
|
|
|
|
|
2019-04-08 09:31:49 +00:00
|
|
|
delayed_stream_port = &source->getOutputs().front();
|
2019-03-26 18:28:37 +00:00
|
|
|
processors.emplace_back(std::move(source));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::concatDelayedStream()
|
|
|
|
{
|
2019-04-08 09:31:49 +00:00
|
|
|
if (!delayed_stream_port)
|
2019-03-26 18:28:37 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
auto resize = std::make_shared<ResizeProcessor>(current_header, getNumMainStreams(), 1);
|
|
|
|
auto stream = streams.begin();
|
|
|
|
for (auto & input : resize->getInputs())
|
|
|
|
connect(**(stream++), input);
|
|
|
|
|
|
|
|
auto concat = std::make_shared<ConcatProcessor>(current_header, 2);
|
|
|
|
connect(resize->getOutputs().front(), concat->getInputs().front());
|
2019-04-08 09:31:49 +00:00
|
|
|
connect(*delayed_stream_port, concat->getInputs().back());
|
2019-03-26 18:28:37 +00:00
|
|
|
|
|
|
|
streams = { &concat->getOutputs().front() };
|
|
|
|
processors.emplace_back(std::move(resize));
|
|
|
|
processors.emplace_back(std::move(concat));
|
2019-04-08 09:31:49 +00:00
|
|
|
|
|
|
|
delayed_stream_port = nullptr;
|
2019-03-26 18:28:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::resize(size_t num_streams)
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
concatDelayedStream();
|
|
|
|
|
|
|
|
if (num_streams == getNumStreams())
|
|
|
|
return;
|
|
|
|
|
2019-05-14 13:13:12 +00:00
|
|
|
has_resize = true;
|
2019-05-14 11:04:11 +00:00
|
|
|
|
2019-03-26 18:28:37 +00:00
|
|
|
auto resize = std::make_shared<ResizeProcessor>(current_header, getNumStreams(), num_streams);
|
|
|
|
auto stream = streams.begin();
|
|
|
|
for (auto & input : resize->getInputs())
|
|
|
|
connect(**(stream++), input);
|
|
|
|
|
|
|
|
streams.clear();
|
|
|
|
streams.reserve(num_streams);
|
|
|
|
for (auto & output : resize->getOutputs())
|
|
|
|
streams.emplace_back(&output);
|
2019-04-05 10:52:07 +00:00
|
|
|
|
|
|
|
processors.emplace_back(std::move(resize));
|
2019-03-26 18:28:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::addTotalsHavingTransform(ProcessorPtr transform)
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
|
|
|
if (!typeid_cast<const TotalsHavingTransform *>(transform.get()))
|
|
|
|
throw Exception("TotalsHavingTransform expected for QueryPipeline::addTotalsHavingTransform.",
|
|
|
|
ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-04-08 09:31:49 +00:00
|
|
|
if (totals_having_port)
|
2019-03-26 18:28:37 +00:00
|
|
|
throw Exception("Totals having transform was already added to pipeline.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
resize(1);
|
|
|
|
|
|
|
|
connect(*streams.front(), transform->getInputs().front());
|
|
|
|
|
|
|
|
auto & outputs = transform->getOutputs();
|
|
|
|
|
|
|
|
streams = { &outputs.front() };
|
|
|
|
totals_having_port = &outputs.back();
|
|
|
|
current_header = outputs.front().getHeader();
|
|
|
|
processors.emplace_back(std::move(transform));
|
|
|
|
}
|
|
|
|
|
2019-04-09 14:51:38 +00:00
|
|
|
void QueryPipeline::addDefaultTotals()
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
|
|
|
if (totals_having_port)
|
|
|
|
throw Exception("Totals having transform was already added to pipeline.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
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));
|
|
|
|
totals_having_port = &source->getPort();
|
|
|
|
processors.emplace_back(source);
|
|
|
|
}
|
|
|
|
|
2019-04-10 16:28:37 +00:00
|
|
|
void QueryPipeline::addTotals(ProcessorPtr source)
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
|
|
|
if (totals_having_port)
|
|
|
|
throw Exception("Totals having transform was already added to pipeline.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-04-17 14:58:34 +00:00
|
|
|
checkSource(source, false);
|
2019-04-10 16:28:37 +00:00
|
|
|
assertBlocksHaveEqualStructure(current_header, source->getOutputs().front().getHeader(), "QueryPipeline");
|
|
|
|
|
|
|
|
totals_having_port = &source->getOutputs().front();
|
|
|
|
processors.emplace_back(source);
|
|
|
|
}
|
|
|
|
|
2019-04-17 15:35:22 +00:00
|
|
|
void QueryPipeline::dropTotalsIfHas()
|
|
|
|
{
|
|
|
|
if (totals_having_port)
|
|
|
|
{
|
|
|
|
auto null_sink = std::make_shared<NullSink>(totals_having_port->getHeader());
|
|
|
|
connect(*totals_having_port, null_sink->getPort());
|
|
|
|
processors.emplace_back(std::move(null_sink));
|
2019-04-17 15:43:01 +00:00
|
|
|
totals_having_port = nullptr;
|
2019-04-17 15:35:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:28:37 +00:00
|
|
|
void QueryPipeline::addExtremesTransform(ProcessorPtr transform)
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
|
|
|
if (!typeid_cast<const ExtremesTransform *>(transform.get()))
|
|
|
|
throw Exception("ExtremesTransform expected for QueryPipeline::addExtremesTransform.",
|
|
|
|
ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-04-08 09:31:49 +00:00
|
|
|
if (extremes_port)
|
2019-03-26 18:28:37 +00:00
|
|
|
throw Exception("Extremes transform was already added to pipeline.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
if (getNumStreams() != 1)
|
|
|
|
throw Exception("Cant't add Extremes transform because pipeline is expected to have single stream, "
|
|
|
|
"but it has " + toString(getNumStreams()) + " streams.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
connect(*streams.front(), transform->getInputs().front());
|
|
|
|
|
|
|
|
auto & outputs = transform->getOutputs();
|
|
|
|
|
|
|
|
streams = { &outputs.front() };
|
|
|
|
extremes_port = &outputs.back();
|
|
|
|
current_header = outputs.front().getHeader();
|
|
|
|
processors.emplace_back(std::move(transform));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::addCreatingSetsTransform(ProcessorPtr transform)
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
|
|
|
if (!typeid_cast<const CreatingSetsTransform *>(transform.get()))
|
|
|
|
throw Exception("CreatingSetsTransform expected for QueryPipeline::addExtremesTransform.",
|
|
|
|
ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
resize(1);
|
|
|
|
|
|
|
|
auto concat = std::make_shared<ConcatProcessor>(current_header, 2);
|
|
|
|
connect(transform->getOutputs().front(), concat->getInputs().front());
|
|
|
|
connect(*streams.back(), concat->getInputs().back());
|
|
|
|
|
|
|
|
streams = { &concat->getOutputs().front() };
|
|
|
|
processors.emplace_back(std::move(transform));
|
|
|
|
processors.emplace_back(std::move(concat));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::setOutput(ProcessorPtr output)
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
2019-04-05 10:52:07 +00:00
|
|
|
auto * format = dynamic_cast<IOutputFormat * >(output.get());
|
2019-03-26 18:28:37 +00:00
|
|
|
|
|
|
|
if (!format)
|
|
|
|
throw Exception("IOutputFormat processor expected for QueryPipeline::setOutput.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-04-08 14:55:20 +00:00
|
|
|
if (output_format)
|
2019-03-26 18:28:37 +00:00
|
|
|
throw Exception("QueryPipeline already has output.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-04-08 14:55:20 +00:00
|
|
|
output_format = format;
|
2019-03-26 18:28:37 +00:00
|
|
|
|
|
|
|
resize(1);
|
|
|
|
|
|
|
|
auto & main = format->getPort(IOutputFormat::PortKind::Main);
|
|
|
|
auto & totals = format->getPort(IOutputFormat::PortKind::Totals);
|
|
|
|
auto & extremes = format->getPort(IOutputFormat::PortKind::Extremes);
|
|
|
|
|
2019-04-08 09:31:49 +00:00
|
|
|
if (!totals_having_port)
|
2019-03-26 18:28:37 +00:00
|
|
|
{
|
|
|
|
auto null_source = std::make_shared<NullSource>(totals.getHeader());
|
|
|
|
totals_having_port = &null_source->getPort();
|
|
|
|
processors.emplace_back(std::move(null_source));
|
|
|
|
}
|
|
|
|
|
2019-04-08 09:31:49 +00:00
|
|
|
if (!extremes_port)
|
2019-03-26 18:28:37 +00:00
|
|
|
{
|
|
|
|
auto null_source = std::make_shared<NullSource>(extremes.getHeader());
|
|
|
|
extremes_port = &null_source->getPort();
|
|
|
|
processors.emplace_back(std::move(null_source));
|
|
|
|
}
|
|
|
|
|
2019-04-05 10:52:07 +00:00
|
|
|
processors.emplace_back(std::move(output));
|
|
|
|
|
2019-03-26 18:28:37 +00:00
|
|
|
connect(*streams.front(), main);
|
|
|
|
connect(*totals_having_port, totals);
|
|
|
|
connect(*extremes_port, extremes);
|
|
|
|
}
|
|
|
|
|
2019-04-09 13:07:07 +00:00
|
|
|
void QueryPipeline::unitePipelines(
|
|
|
|
std::vector<QueryPipeline> && pipelines, const Block & common_header, const Context & context)
|
2019-03-26 18:28:37 +00:00
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
concatDelayedStream();
|
|
|
|
|
2019-04-09 13:07:07 +00:00
|
|
|
addSimpleTransform([&](const Block & header)
|
|
|
|
{
|
|
|
|
return std::make_shared<ConvertingTransform>(
|
|
|
|
header, common_header, ConvertingTransform::MatchColumnsMode::Position, context);
|
|
|
|
});
|
|
|
|
|
2019-03-26 18:28:37 +00:00
|
|
|
std::vector<OutputPort *> extremes;
|
|
|
|
|
|
|
|
for (auto & pipeline : pipelines)
|
|
|
|
{
|
|
|
|
pipeline.checkInitialized();
|
|
|
|
pipeline.concatDelayedStream();
|
|
|
|
|
2019-04-05 11:34:11 +00:00
|
|
|
pipeline.addSimpleTransform([&](const Block & header)
|
|
|
|
{
|
2019-03-26 18:28:37 +00:00
|
|
|
return std::make_shared<ConvertingTransform>(
|
2019-04-09 13:07:07 +00:00
|
|
|
header, common_header, ConvertingTransform::MatchColumnsMode::Position, context);
|
2019-03-26 18:28:37 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (pipeline.extremes_port)
|
|
|
|
{
|
|
|
|
auto converting = std::make_shared<ConvertingTransform>(
|
2019-04-09 13:07:07 +00:00
|
|
|
pipeline.current_header, common_header, ConvertingTransform::MatchColumnsMode::Position, context);
|
2019-03-26 18:28:37 +00:00
|
|
|
|
|
|
|
connect(*pipeline.extremes_port, converting->getInputPort());
|
|
|
|
extremes.push_back(&converting->getOutputPort());
|
|
|
|
processors.push_back(std::move(converting));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Take totals only from first port.
|
|
|
|
if (pipeline.totals_having_port)
|
|
|
|
{
|
2019-04-08 09:31:49 +00:00
|
|
|
if (!totals_having_port)
|
2019-03-26 18:28:37 +00:00
|
|
|
{
|
|
|
|
auto converting = std::make_shared<ConvertingTransform>(
|
2019-04-09 13:07:07 +00:00
|
|
|
pipeline.current_header, common_header, ConvertingTransform::MatchColumnsMode::Position, context);
|
2019-03-26 18:28:37 +00:00
|
|
|
|
2019-04-10 11:15:30 +00:00
|
|
|
connect(*pipeline.totals_having_port, converting->getInputPort());
|
2019-03-26 18:28:37 +00:00
|
|
|
totals_having_port = &converting->getOutputPort();
|
|
|
|
processors.push_back(std::move(converting));
|
|
|
|
}
|
|
|
|
else
|
2019-04-17 15:35:22 +00:00
|
|
|
pipeline.dropTotalsIfHas();
|
2019-03-26 18:28:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
processors.insert(processors.end(), pipeline.processors.begin(), pipeline.processors.end());
|
|
|
|
streams.insert(streams.end(), pipeline.streams.begin(), pipeline.streams.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!extremes.empty())
|
|
|
|
{
|
2019-04-08 09:31:49 +00:00
|
|
|
size_t num_inputs = extremes.size() + (extremes_port ? 1u : 0u);
|
2019-03-26 18:28:37 +00:00
|
|
|
|
|
|
|
if (num_inputs == 1)
|
|
|
|
extremes_port = extremes.front();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/// Add extra processor for extremes.
|
|
|
|
auto resize = std::make_shared<ResizeProcessor>(current_header, num_inputs, 1);
|
|
|
|
auto input = resize->getInputs().begin();
|
|
|
|
|
2019-04-08 09:31:49 +00:00
|
|
|
if (extremes_port)
|
2019-03-26 18:28:37 +00:00
|
|
|
connect(*extremes_port, *(input++));
|
|
|
|
|
|
|
|
for (auto & output : extremes)
|
|
|
|
connect(*output, *(input++));
|
|
|
|
|
|
|
|
auto transform = std::make_shared<ExtremesTransform>(current_header);
|
|
|
|
extremes_port = &transform->getOutputPort();
|
|
|
|
|
|
|
|
connect(resize->getOutputs().front(), transform->getInputPort());
|
|
|
|
processors.emplace_back(std::move(transform));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::setProgressCallback(const ProgressCallback & callback)
|
|
|
|
{
|
|
|
|
for (auto & processor : processors)
|
2019-04-10 12:38:57 +00:00
|
|
|
{
|
2019-03-26 18:28:37 +00:00
|
|
|
if (auto * source = typeid_cast<SourceFromInputStream *>(processor.get()))
|
2019-04-11 13:04:43 +00:00
|
|
|
source->getStream().setProgressCallback(callback);
|
2019-04-10 12:38:57 +00:00
|
|
|
|
|
|
|
if (auto * source = typeid_cast<CreatingSetsTransform *>(processor.get()))
|
|
|
|
source->setProgressCallback(callback);
|
|
|
|
}
|
2019-03-26 18:28:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::setProcessListElement(QueryStatus * elem)
|
|
|
|
{
|
|
|
|
for (auto & processor : processors)
|
2019-04-10 12:38:57 +00:00
|
|
|
{
|
2019-03-26 18:28:37 +00:00
|
|
|
if (auto * source = typeid_cast<SourceFromInputStream *>(processor.get()))
|
2019-04-11 13:04:43 +00:00
|
|
|
source->getStream().setProcessListElement(elem);
|
2019-04-10 12:38:57 +00:00
|
|
|
|
|
|
|
if (auto * source = typeid_cast<CreatingSetsTransform *>(processor.get()))
|
|
|
|
source->setProcessListElement(elem);
|
|
|
|
}
|
2019-03-26 18:28:37 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 14:55:20 +00:00
|
|
|
void QueryPipeline::finalize()
|
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
|
|
|
if (!output_format)
|
|
|
|
throw Exception("Cannot finalize pipeline because it doesn't have output.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
calcRowsBeforeLimit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QueryPipeline::calcRowsBeforeLimit()
|
|
|
|
{
|
|
|
|
/// TODO get from Remote
|
|
|
|
|
|
|
|
UInt64 rows_before_limit_at_least = 0;
|
2019-04-29 16:52:50 +00:00
|
|
|
UInt64 rows_before_limit = 0;
|
|
|
|
|
2019-04-08 14:55:20 +00:00
|
|
|
bool has_limit = false;
|
2019-04-29 16:52:50 +00:00
|
|
|
bool has_partial_sorting = false;
|
2019-04-08 14:55:20 +00:00
|
|
|
|
2019-04-29 16:52:50 +00:00
|
|
|
std::unordered_set<IProcessor *> visited;
|
|
|
|
|
|
|
|
struct QueuedEntry
|
2019-04-08 14:55:20 +00:00
|
|
|
{
|
2019-04-29 16:52:50 +00:00
|
|
|
IProcessor * processor;
|
|
|
|
bool visited_limit;
|
|
|
|
};
|
2019-04-12 15:20:24 +00:00
|
|
|
|
2019-04-29 16:52:50 +00:00
|
|
|
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)
|
2019-04-12 15:20:24 +00:00
|
|
|
{
|
2019-04-29 16:52:50 +00:00
|
|
|
if (auto * limit = typeid_cast<const LimitTransform *>(processor))
|
2019-04-12 15:20:24 +00:00
|
|
|
{
|
2019-04-29 16:52:50 +00:00
|
|
|
has_limit = visited_limit = true;
|
|
|
|
rows_before_limit_at_least += limit->getRowsBeforeLimitAtLeast();
|
2019-04-12 15:20:24 +00:00
|
|
|
}
|
2019-04-08 14:55:20 +00:00
|
|
|
|
2019-04-29 16:52:50 +00:00
|
|
|
if (auto * source = typeid_cast<SourceFromInputStream *>(processor))
|
|
|
|
{
|
|
|
|
auto & info = source->getStream().getProfileInfo();
|
|
|
|
if (info.hasAppliedLimit())
|
|
|
|
{
|
|
|
|
has_limit = visited_limit = true;
|
|
|
|
rows_before_limit_at_least += info.getRowsBeforeLimit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-08 14:55:20 +00:00
|
|
|
|
2019-04-29 16:52:50 +00:00
|
|
|
if (auto * sorting = typeid_cast<const PartialSortingTransform *>(processor))
|
2019-04-08 14:55:20 +00:00
|
|
|
{
|
|
|
|
has_partial_sorting = true;
|
2019-04-29 16:52:50 +00:00
|
|
|
rows_before_limit += sorting->getNumReadRows();
|
|
|
|
|
|
|
|
/// Don't go to children. Take rows_before_limit from last PartialSortingTransform.
|
2019-07-08 15:52:18 +00:00
|
|
|
/// continue;
|
2019-04-29 16:52:50 +00:00
|
|
|
}
|
|
|
|
|
2019-05-13 12:08:02 +00:00
|
|
|
/// Skip totals and extremes port for output format.
|
2019-05-13 13:04:52 +00:00
|
|
|
if (auto * format = dynamic_cast<IOutputFormat *>(processor))
|
2019-05-13 12:08:02 +00:00
|
|
|
{
|
|
|
|
auto * child_processor = &format->getPort(IOutputFormat::PortKind::Main).getOutputPort().getProcessor();
|
|
|
|
if (visited.emplace(child_processor).second)
|
|
|
|
queue.push({ child_processor, visited_limit });
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-04-29 16:52:50 +00:00
|
|
|
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 });
|
2019-04-08 14:55:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-29 16:52:50 +00:00
|
|
|
/// Get num read rows from PartialSortingTransform if have it.
|
2019-04-08 14:55:20 +00:00
|
|
|
if (has_limit)
|
|
|
|
output_format->setRowsBeforeLimit(has_partial_sorting ? rows_before_limit : rows_before_limit_at_least);
|
|
|
|
}
|
2019-03-26 18:28:37 +00:00
|
|
|
|
2019-04-29 13:57:29 +00:00
|
|
|
PipelineExecutorPtr QueryPipeline::execute()
|
2019-03-26 18:28:37 +00:00
|
|
|
{
|
|
|
|
checkInitialized();
|
|
|
|
|
2019-04-08 14:55:20 +00:00
|
|
|
if (!output_format)
|
2019-03-26 18:28:37 +00:00
|
|
|
throw Exception("Cannot execute pipeline because it doesn't have output.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-04-29 13:57:29 +00:00
|
|
|
return std::make_shared<PipelineExecutor>(processors);
|
2019-03-26 18:28:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|