ClickHouse/dbms/src/Storages/MergeTree/MergeTreeThreadSelectBlockInputStream.h

54 lines
1.5 KiB
C++
Raw Normal View History

2015-06-24 11:03:53 +00:00
#pragma once
2018-11-29 09:19:42 +00:00
#include <Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.h>
2015-06-24 11:03:53 +00:00
namespace DB
{
2016-11-20 12:43:20 +00:00
class MergeTreeReadPool;
/** Used in conjunction with MergeTreeReadPool, asking it for more work to do and performing whatever reads it is asked
* to perform.
*/
2018-11-29 09:19:42 +00:00
class MergeTreeThreadSelectBlockInputStream : public MergeTreeBaseSelectBlockInputStream
2015-06-24 11:03:53 +00:00
{
public:
2018-11-29 09:19:42 +00:00
MergeTreeThreadSelectBlockInputStream(
2019-08-03 11:02:40 +00:00
const size_t thread_,
const std::shared_ptr<MergeTreeReadPool> & pool_,
const size_t min_marks_to_read_,
const UInt64 max_block_size_,
size_t preferred_block_size_bytes_,
size_t preferred_max_column_in_block_size_bytes_,
const MergeTreeData & storage_,
const bool use_uncompressed_cache_,
const PrewhereInfoPtr & prewhere_info_,
2019-10-10 16:30:30 +00:00
const ReaderSettings & reader_settings_,
2019-08-03 11:02:40 +00:00
const Names & virt_column_names_);
2015-06-24 11:03:53 +00:00
String getName() const override { return "MergeTreeThread"; }
2018-11-29 09:19:42 +00:00
~MergeTreeThreadSelectBlockInputStream() override;
Block getHeader() const override;
2015-06-24 11:03:53 +00:00
protected:
/// Requests read task from MergeTreeReadPool and signals whether it got one
2017-04-05 20:34:19 +00:00
bool getNewTask() override;
2015-07-03 15:08:21 +00:00
2018-04-16 12:21:36 +00:00
private:
/// "thread" index (there are N threads and each thread is assigned index in interval [0..N-1])
size_t thread;
2015-07-03 15:08:21 +00:00
std::shared_ptr<MergeTreeReadPool> pool;
size_t min_marks_to_read;
2018-04-16 12:21:36 +00:00
/// Last part readed in this thread
2018-10-04 08:52:56 +00:00
std::string last_readed_part_path;
2018-04-19 15:18:26 +00:00
/// Names from header. Used in order to order columns in read blocks.
2018-04-16 12:21:36 +00:00
Names ordered_names;
2015-06-24 11:03:53 +00:00
};
}