mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
182 lines
5.2 KiB
C++
182 lines
5.2 KiB
C++
#include <Common/FieldVisitors.h>
|
|
#include <Common/assert_cast.h>
|
|
#include <DataStreams/VersionedCollapsingSortedBlockInputStream.h>
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int NOT_IMPLEMENTED;
|
|
}
|
|
|
|
|
|
VersionedCollapsingSortedBlockInputStream::VersionedCollapsingSortedBlockInputStream(
|
|
const BlockInputStreams & inputs_, const SortDescription & description_,
|
|
const String & sign_column_, size_t max_block_size_,
|
|
WriteBuffer * out_row_sources_buf_, bool average_block_sizes_)
|
|
: MergingSortedBlockInputStream(inputs_, description_, max_block_size_, 0, out_row_sources_buf_, false, average_block_sizes_)
|
|
, max_rows_in_queue(std::min(std::max<size_t>(3, max_block_size_), MAX_ROWS_IN_MULTIVERSION_QUEUE) - 2)
|
|
, current_keys(max_rows_in_queue + 1)
|
|
{
|
|
sign_column_number = header.getPositionByName(sign_column_);
|
|
}
|
|
|
|
|
|
inline ALWAYS_INLINE static void writeRowSourcePart(WriteBuffer & buffer, RowSourcePart row_source)
|
|
{
|
|
if constexpr (sizeof(RowSourcePart) == 1)
|
|
buffer.write(*reinterpret_cast<const char *>(&row_source));
|
|
else
|
|
buffer.write(reinterpret_cast<const char *>(&row_source), sizeof(RowSourcePart));
|
|
}
|
|
|
|
void VersionedCollapsingSortedBlockInputStream::insertGap(size_t gap_size)
|
|
{
|
|
if (out_row_sources_buf)
|
|
{
|
|
for (size_t i = 0; i < gap_size; ++i)
|
|
{
|
|
writeRowSourcePart(*out_row_sources_buf, current_row_sources.front());
|
|
current_row_sources.pop();
|
|
}
|
|
}
|
|
}
|
|
|
|
void VersionedCollapsingSortedBlockInputStream::insertRow(size_t skip_rows, const SharedBlockRowRef & row, MutableColumns & merged_columns)
|
|
{
|
|
const auto & columns = row.shared_block->all_columns;
|
|
for (size_t i = 0; i < num_columns; ++i)
|
|
merged_columns[i]->insertFrom(*columns[i], row.row_num);
|
|
|
|
insertGap(skip_rows);
|
|
|
|
if (out_row_sources_buf)
|
|
{
|
|
current_row_sources.front().setSkipFlag(false);
|
|
writeRowSourcePart(*out_row_sources_buf, current_row_sources.front());
|
|
current_row_sources.pop();
|
|
}
|
|
}
|
|
|
|
Block VersionedCollapsingSortedBlockInputStream::readImpl()
|
|
{
|
|
if (finished)
|
|
return {};
|
|
|
|
MutableColumns merged_columns;
|
|
init(merged_columns);
|
|
|
|
if (has_collation)
|
|
throw Exception("Logical error: " + getName() + " does not support collations", ErrorCodes::NOT_IMPLEMENTED);
|
|
|
|
if (merged_columns.empty())
|
|
return {};
|
|
|
|
merge(merged_columns, queue_without_collation);
|
|
return header.cloneWithColumns(std::move(merged_columns));
|
|
}
|
|
|
|
|
|
void VersionedCollapsingSortedBlockInputStream::merge(MutableColumns & merged_columns, SortingHeap<SortCursor> & queue)
|
|
{
|
|
MergeStopCondition stop_condition(average_block_sizes, max_block_size);
|
|
|
|
auto update_queue = [this, & queue](SortCursor & cursor)
|
|
{
|
|
if (out_row_sources_buf)
|
|
current_row_sources.emplace(cursor->order, true);
|
|
|
|
if (!cursor->isLast())
|
|
{
|
|
queue.next();
|
|
}
|
|
else
|
|
{
|
|
/// We take next block from the corresponding source, if there is one.
|
|
fetchNextBlock(cursor, queue);
|
|
}
|
|
};
|
|
|
|
/// Take rows in correct order and put them into `merged_columns` until the rows no more than `max_block_size`
|
|
while (queue.isValid())
|
|
{
|
|
SortCursor current = queue.current();
|
|
size_t current_block_granularity = current->rows;
|
|
|
|
SharedBlockRowRef next_key;
|
|
|
|
Int8 sign = assert_cast<const ColumnInt8 &>(*current->all_columns[sign_column_number]).getData()[current->pos];
|
|
|
|
setPrimaryKeyRef(next_key, current);
|
|
|
|
size_t rows_to_merge = 0;
|
|
|
|
/// Each branch either updates queue or increases rows_to_merge.
|
|
if (current_keys.empty())
|
|
{
|
|
sign_in_queue = sign;
|
|
current_keys.pushBack(next_key);
|
|
update_queue(current);
|
|
}
|
|
else
|
|
{
|
|
if (current_keys.back() == next_key)
|
|
{
|
|
update_queue(current);
|
|
|
|
if (sign == sign_in_queue)
|
|
current_keys.pushBack(next_key);
|
|
else
|
|
{
|
|
current_keys.popBack();
|
|
current_keys.pushGap(2);
|
|
}
|
|
}
|
|
else
|
|
rows_to_merge = current_keys.size();
|
|
}
|
|
|
|
if (current_keys.size() > max_rows_in_queue)
|
|
rows_to_merge = std::max(rows_to_merge, current_keys.size() - max_rows_in_queue);
|
|
|
|
while (rows_to_merge)
|
|
{
|
|
const auto & row = current_keys.front();
|
|
auto gap = current_keys.frontGap();
|
|
|
|
insertRow(gap, row, merged_columns);
|
|
|
|
current_keys.popFront();
|
|
|
|
stop_condition.addRowWithGranularity(current_block_granularity);
|
|
--rows_to_merge;
|
|
|
|
if (stop_condition.checkStop())
|
|
{
|
|
++blocks_written;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
while (!current_keys.empty())
|
|
{
|
|
const auto & row = current_keys.front();
|
|
auto gap = current_keys.frontGap();
|
|
|
|
insertRow(gap, row, merged_columns);
|
|
|
|
current_keys.popFront();
|
|
}
|
|
|
|
/// Write information about last collapsed rows.
|
|
insertGap(current_keys.frontGap());
|
|
|
|
finished = true;
|
|
}
|
|
|
|
}
|