2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/Set.h>
|
|
|
|
#include <Interpreters/Join.h>
|
2018-02-19 20:42:05 +00:00
|
|
|
#include <DataStreams/materializeBlock.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <DataStreams/IBlockOutputStream.h>
|
|
|
|
#include <DataStreams/CreatingSetsBlockInputStream.h>
|
|
|
|
#include <Storages/IStorage.h>
|
2014-03-04 11:26:55 +00:00
|
|
|
#include <iomanip>
|
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
|
2014-03-04 11:26:55 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int SET_SIZE_LIMIT_EXCEEDED;
|
2016-01-11 21:46:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-04 11:26:55 +00:00
|
|
|
Block CreatingSetsBlockInputStream::readImpl()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
Block res;
|
2014-03-04 11:26:55 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
createAll();
|
2014-03-04 11:26:55 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (isCancelled())
|
|
|
|
return res;
|
2014-03-04 11:26:55 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return children.back()->read();
|
2014-03-04 11:26:55 +00:00
|
|
|
}
|
|
|
|
|
2015-04-16 09:55:24 +00:00
|
|
|
|
2016-05-31 01:04:34 +00:00
|
|
|
void CreatingSetsBlockInputStream::readPrefixImpl()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
createAll();
|
2016-05-31 01:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-16 09:55:24 +00:00
|
|
|
const Block & CreatingSetsBlockInputStream::getTotals()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
auto input = dynamic_cast<IProfilingBlockInputStream *>(children.back().get());
|
2015-04-16 09:55:24 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (input)
|
|
|
|
return input->getTotals();
|
|
|
|
else
|
|
|
|
return totals;
|
2015-04-16 09:55:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-31 01:04:34 +00:00
|
|
|
void CreatingSetsBlockInputStream::createAll()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!created)
|
|
|
|
{
|
|
|
|
for (auto & elem : subqueries_for_sets)
|
|
|
|
{
|
|
|
|
if (elem.second.source) /// There could be prepared in advance Set/Join - no source is specified for them.
|
|
|
|
{
|
|
|
|
if (isCancelled())
|
|
|
|
return;
|
|
|
|
|
|
|
|
createOne(elem.second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
created = true;
|
|
|
|
}
|
2016-05-31 01:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CreatingSetsBlockInputStream::createOne(SubqueryForSet & subquery)
|
2014-03-04 11:26:55 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
LOG_TRACE(log, (subquery.set ? "Creating set. " : "")
|
|
|
|
<< (subquery.join ? "Creating join. " : "")
|
|
|
|
<< (subquery.table ? "Filling temporary table. " : ""));
|
|
|
|
Stopwatch watch;
|
|
|
|
|
|
|
|
BlockOutputStreamPtr table_out;
|
|
|
|
if (subquery.table)
|
|
|
|
table_out = subquery.table->write({}, {});
|
|
|
|
|
|
|
|
bool done_with_set = !subquery.set;
|
|
|
|
bool done_with_join = !subquery.join;
|
|
|
|
bool done_with_table = !subquery.table;
|
|
|
|
|
|
|
|
if (done_with_set && done_with_join && done_with_table)
|
|
|
|
throw Exception("Logical error: nothing to do with subquery", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
if (table_out)
|
|
|
|
table_out->writePrefix();
|
|
|
|
|
|
|
|
while (Block block = subquery.source->read())
|
|
|
|
{
|
|
|
|
if (isCancelled())
|
|
|
|
{
|
|
|
|
LOG_DEBUG(log, "Query was cancelled during set / join or temporary table creation.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!done_with_set)
|
|
|
|
{
|
2018-02-08 14:15:21 +00:00
|
|
|
if (!subquery.set->insertFromBlock(block, /*fill_set_elements=*/false))
|
2017-04-01 07:20:54 +00:00
|
|
|
done_with_set = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!done_with_join)
|
|
|
|
{
|
|
|
|
if (!subquery.join->insertFromBlock(block))
|
|
|
|
done_with_join = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!done_with_table)
|
|
|
|
{
|
2018-02-19 20:42:05 +00:00
|
|
|
block = materializeBlock(block);
|
2017-04-01 07:20:54 +00:00
|
|
|
table_out->write(block);
|
|
|
|
|
|
|
|
rows_to_transfer += block.rows();
|
|
|
|
bytes_to_transfer += block.bytes();
|
|
|
|
|
|
|
|
if ((max_rows_to_transfer && rows_to_transfer > max_rows_to_transfer)
|
|
|
|
|| (max_bytes_to_transfer && bytes_to_transfer > max_bytes_to_transfer))
|
|
|
|
{
|
2017-09-08 03:47:27 +00:00
|
|
|
switch (transfer_overflow_mode)
|
|
|
|
{
|
|
|
|
case OverflowMode::THROW:
|
|
|
|
throw Exception("IN/JOIN external table size limit exceeded."
|
|
|
|
" Rows: " + toString(rows_to_transfer)
|
|
|
|
+ ", limit: " + toString(max_rows_to_transfer)
|
|
|
|
+ ". Bytes: " + toString(bytes_to_transfer)
|
|
|
|
+ ", limit: " + toString(max_bytes_to_transfer) + ".",
|
|
|
|
ErrorCodes::SET_SIZE_LIMIT_EXCEEDED);
|
|
|
|
case OverflowMode::BREAK:
|
|
|
|
done_with_table = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw Exception("Logical error: unknown overflow mode", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (done_with_set && done_with_join && done_with_table)
|
|
|
|
{
|
|
|
|
if (IProfilingBlockInputStream * profiling_in = dynamic_cast<IProfilingBlockInputStream *>(&*subquery.source))
|
|
|
|
profiling_in->cancel();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-06-12 04:04:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (table_out)
|
|
|
|
table_out->writeSuffix();
|
|
|
|
|
|
|
|
/// We will display information about how many rows and bytes are read.
|
|
|
|
size_t rows = 0;
|
|
|
|
size_t bytes = 0;
|
|
|
|
|
|
|
|
watch.stop();
|
|
|
|
|
|
|
|
subquery.source->getLeafRowsBytes(rows, bytes);
|
|
|
|
|
|
|
|
size_t head_rows = 0;
|
|
|
|
if (IProfilingBlockInputStream * profiling_in = dynamic_cast<IProfilingBlockInputStream *>(&*subquery.source))
|
|
|
|
{
|
|
|
|
head_rows = profiling_in->getProfileInfo().rows;
|
|
|
|
|
|
|
|
if (subquery.join)
|
|
|
|
subquery.join->setTotals(profiling_in->getTotals());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows != 0)
|
|
|
|
{
|
|
|
|
std::stringstream msg;
|
|
|
|
msg << std::fixed << std::setprecision(3);
|
|
|
|
msg << "Created. ";
|
|
|
|
|
|
|
|
if (subquery.set)
|
|
|
|
msg << "Set with " << subquery.set->getTotalRowCount() << " entries from " << head_rows << " rows. ";
|
|
|
|
if (subquery.join)
|
|
|
|
msg << "Join with " << subquery.join->getTotalRowCount() << " entries from " << head_rows << " rows. ";
|
|
|
|
if (subquery.table)
|
|
|
|
msg << "Table with " << head_rows << " rows. ";
|
|
|
|
|
|
|
|
msg << "Read " << rows << " rows, " << bytes / 1048576.0 << " MiB in " << watch.elapsedSeconds() << " sec., "
|
|
|
|
<< static_cast<size_t>(rows / watch.elapsedSeconds()) << " rows/sec., " << bytes / 1048576.0 / watch.elapsedSeconds() << " MiB/sec.";
|
|
|
|
|
|
|
|
LOG_DEBUG(log, msg.rdbuf());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LOG_DEBUG(log, "Subquery has empty result.");
|
|
|
|
}
|
2014-03-04 11:26:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|