ClickHouse/src/Interpreters/SquashingTransform.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.4 KiB
C++
Raw Normal View History

#pragma once
#include <Core/Block.h>
namespace DB
{
2016-07-07 01:57:48 +00:00
/** Merging consecutive passed blocks to specified minimum size.
*
* (But if one of input blocks has already at least specified size,
* then don't merge it with neighbours, even if neighbours are small.)
*
* Used to prepare blocks to adequate size for INSERT queries,
* because such storages as Memory, StripeLog, Log, TinyLog...
* store or compress data in blocks exactly as passed to it,
* and blocks of small size are not efficient.
*
* Order of data is kept.
*/
class SquashingTransform
{
public:
2016-07-07 01:57:48 +00:00
/// Conditions on rows and bytes are OR-ed. If one of them is zero, then corresponding condition is ignored.
SquashingTransform(size_t min_block_size_rows_, size_t min_block_size_bytes_);
2016-07-07 01:57:48 +00:00
/** Add next block and possibly returns squashed block.
* At end, you need to pass empty block. As the result for last (empty) block, you will get last Result with ready = true.
*/
2020-04-21 14:59:57 +00:00
Block add(Block && block);
Block add(const Block & block);
private:
size_t min_block_size_rows;
size_t min_block_size_bytes;
2020-04-21 14:59:57 +00:00
Block accumulated_block;
2020-04-21 14:59:57 +00:00
template <typename ReferenceType>
Block addImpl(ReferenceType block);
2020-04-21 16:27:56 +00:00
2020-04-21 14:59:57 +00:00
template <typename ReferenceType>
void append(ReferenceType block);
2020-04-21 14:59:57 +00:00
bool isEnoughSize(const Block & block);
bool isEnoughSize(size_t rows, size_t bytes) const;
};
}