2016-07-06 21:48:11 +00:00
|
|
|
#include <DB/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.
|
|
|
|
*/
|
2016-07-06 21:48:11 +00:00
|
|
|
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.
|
2016-07-06 21:48:11 +00:00
|
|
|
SquashingTransform(size_t min_block_size_rows, size_t min_block_size_bytes);
|
|
|
|
|
2016-07-07 01:57:48 +00:00
|
|
|
/// When not ready, you need to pass more blocks to add function.
|
2016-07-06 21:48:11 +00:00
|
|
|
struct Result
|
|
|
|
{
|
|
|
|
bool ready = false;
|
|
|
|
Block block;
|
|
|
|
|
|
|
|
Result(bool ready_) : ready(ready_) {}
|
|
|
|
Result(Block && block_) : ready(true), block(std::move(block_)) {}
|
|
|
|
};
|
|
|
|
|
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.
|
|
|
|
*/
|
2016-07-06 21:50:16 +00:00
|
|
|
Result add(Block && block);
|
2016-07-06 21:48:11 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
size_t min_block_size_rows;
|
|
|
|
size_t min_block_size_bytes;
|
|
|
|
|
|
|
|
Block accumulated_block;
|
|
|
|
|
|
|
|
void append(Block && block);
|
|
|
|
|
|
|
|
bool isEnoughSize(size_t rows, size_t bytes) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|