mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 17:32:32 +00:00
57 lines
1.2 KiB
C++
57 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <Processors/Sources/SourceWithProgress.h>
|
|
|
|
#include <Storages/Kafka/StorageKafka.h>
|
|
#include <Storages/Kafka/ReadBufferFromKafkaConsumer.h>
|
|
|
|
|
|
namespace Poco
|
|
{
|
|
class Logger;
|
|
}
|
|
namespace DB
|
|
{
|
|
|
|
class KafkaSource : public SourceWithProgress
|
|
{
|
|
public:
|
|
KafkaSource(
|
|
StorageKafka & storage_,
|
|
const StorageSnapshotPtr & storage_snapshot_,
|
|
const ContextPtr & context_,
|
|
const Names & columns,
|
|
Poco::Logger * log_,
|
|
size_t max_block_size_,
|
|
bool commit_in_suffix = false);
|
|
~KafkaSource() override;
|
|
|
|
String getName() const override { return storage.getName(); }
|
|
|
|
Chunk generate() override;
|
|
|
|
void commit();
|
|
bool isStalled() const { return !buffer || buffer->isStalled(); }
|
|
|
|
private:
|
|
StorageKafka & storage;
|
|
StorageSnapshotPtr storage_snapshot;
|
|
ContextPtr context;
|
|
Names column_names;
|
|
Poco::Logger * log;
|
|
UInt64 max_block_size;
|
|
|
|
ConsumerBufferPtr buffer;
|
|
bool broken = true;
|
|
bool is_finished = false;
|
|
bool commit_in_suffix;
|
|
|
|
const Block non_virtual_header;
|
|
const Block virtual_header;
|
|
const HandleKafkaErrorMode handle_error_mode;
|
|
|
|
Chunk generateImpl();
|
|
};
|
|
|
|
}
|