ClickHouse/src/Storages/RabbitMQ/RabbitMQBlockOutputStream.cpp

60 lines
1.3 KiB
C++
Raw Normal View History

2020-06-01 15:37:23 +00:00
#include <Storages/RabbitMQ/RabbitMQBlockOutputStream.h>
#include <Storages/RabbitMQ/WriteBufferToRabbitMQProducer.h>
#include <Storages/RabbitMQ/StorageRabbitMQ.h>
#include <Formats/FormatFactory.h>
#include <common/logger_useful.h>
namespace DB
{
namespace ErrorCodes
{
2020-06-01 20:48:24 +00:00
extern const int CANNOT_CREATE_IO_BUFFER;
2020-06-01 15:37:23 +00:00
}
RabbitMQBlockOutputStream::RabbitMQBlockOutputStream(
StorageRabbitMQ & storage_, const Context & context_) : storage(storage_), context(context_)
{
}
Block RabbitMQBlockOutputStream::getHeader() const
{
return storage.getSampleBlockNonMaterialized();
}
void RabbitMQBlockOutputStream::writePrefix()
{
buffer = storage.createWriteBuffer();
if (!buffer)
throw Exception("Failed to create RabbitMQ producer!", ErrorCodes::CANNOT_CREATE_IO_BUFFER);
child = FormatFactory::instance().getOutput(
storage.getFormatName(), *buffer, getHeader(), context, [this](const Columns & /* columns */, size_t /* rows */)
{
2020-06-02 13:15:53 +00:00
buffer->countRow();
2020-06-01 15:37:23 +00:00
});
}
void RabbitMQBlockOutputStream::write(const Block & block)
{
child->write(block);
if (buffer)
buffer->flush();
2020-06-04 06:14:09 +00:00
storage.pingConnection();
2020-06-01 15:37:23 +00:00
}
void RabbitMQBlockOutputStream::writeSuffix()
{
child->writeSuffix();
}
}