mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
107 lines
2.9 KiB
C++
107 lines
2.9 KiB
C++
#include <Poco/Net/HTTPServerRequest.h>
|
|
#include <Poco/Net/HTTPServerResponse.h>
|
|
|
|
#include <common/logger_useful.h>
|
|
|
|
#include <Common/HTMLForm.h>
|
|
#include <IO/CompressedWriteBuffer.h>
|
|
#include <IO/ReadBufferFromIStream.h>
|
|
#include <IO/WriteBufferFromHTTPServerResponse.h>
|
|
#include <Interpreters/InterserverIOHandler.h>
|
|
|
|
#include "InterserverIOHTTPHandler.h"
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int ABORTED;
|
|
extern const int POCO_EXCEPTION;
|
|
extern const int STD_EXCEPTION;
|
|
extern const int UNKNOWN_EXCEPTION;
|
|
extern const int TOO_MANY_SIMULTANEOUS_QUERIES;
|
|
}
|
|
|
|
void InterserverIOHTTPHandler::processQuery(Poco::Net::HTTPServerRequest & request, Poco::Net::HTTPServerResponse & response)
|
|
{
|
|
HTMLForm params(request);
|
|
|
|
LOG_TRACE(log, "Request URI: " << request.getURI());
|
|
|
|
/// NOTE: You can do authentication here if you need to.
|
|
|
|
String endpoint_name = params.get("endpoint");
|
|
bool compress = params.get("compress") == "true";
|
|
|
|
ReadBufferFromIStream body(request.stream());
|
|
|
|
const auto & config = server.config();
|
|
unsigned keep_alive_timeout = config.getUInt("keep_alive_timeout", 10);
|
|
|
|
WriteBufferFromHTTPServerResponse out(request, response, keep_alive_timeout);
|
|
|
|
auto endpoint = server.context().getInterserverIOHandler().getEndpoint(endpoint_name);
|
|
|
|
if (compress)
|
|
{
|
|
CompressedWriteBuffer compressed_out(out);
|
|
endpoint->processQuery(params, body, compressed_out, response);
|
|
}
|
|
else
|
|
{
|
|
endpoint->processQuery(params, body, out, response);
|
|
}
|
|
|
|
out.finalize();
|
|
}
|
|
|
|
|
|
void InterserverIOHTTPHandler::handleRequest(Poco::Net::HTTPServerRequest & request, Poco::Net::HTTPServerResponse & response)
|
|
{
|
|
/// In order to work keep-alive.
|
|
if (request.getVersion() == Poco::Net::HTTPServerRequest::HTTP_1_1)
|
|
response.setChunkedTransferEncoding(true);
|
|
|
|
try
|
|
{
|
|
processQuery(request, response);
|
|
LOG_INFO(log, "Done processing query");
|
|
}
|
|
catch (Exception & e)
|
|
{
|
|
|
|
if (e.code() == ErrorCodes::TOO_MANY_SIMULTANEOUS_QUERIES)
|
|
{
|
|
if (!response.sent())
|
|
response.send();
|
|
return;
|
|
}
|
|
|
|
response.setStatusAndReason(Poco::Net::HTTPResponse::HTTP_INTERNAL_SERVER_ERROR);
|
|
|
|
/// Sending to remote server was cancelled due to server shutdown or drop table.
|
|
bool is_real_error = e.code() != ErrorCodes::ABORTED;
|
|
|
|
std::string message = getCurrentExceptionMessage(is_real_error);
|
|
if (!response.sent())
|
|
response.send() << message << std::endl;
|
|
|
|
if (is_real_error)
|
|
LOG_ERROR(log, message);
|
|
else
|
|
LOG_INFO(log, message);
|
|
}
|
|
catch (...)
|
|
{
|
|
response.setStatusAndReason(Poco::Net::HTTPResponse::HTTP_INTERNAL_SERVER_ERROR);
|
|
std::string message = getCurrentExceptionMessage(false);
|
|
if (!response.sent())
|
|
response.send() << message << std::endl;
|
|
LOG_ERROR(log, message);
|
|
}
|
|
}
|
|
|
|
|
|
}
|