2018-05-24 01:02:16 +00:00
|
|
|
#include <Processors/Formats/IRowInputFormat.h>
|
|
|
|
#include <IO/WriteHelpers.h> // toString
|
2019-08-01 14:25:41 +00:00
|
|
|
#include <common/logger_useful.h>
|
2018-05-24 01:02:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2020-02-25 18:02:41 +00:00
|
|
|
extern const int NOT_IMPLEMENTED;
|
2018-05-24 01:02:16 +00:00
|
|
|
extern const int CANNOT_PARSE_INPUT_ASSERTION_FAILED;
|
|
|
|
extern const int CANNOT_PARSE_QUOTED_STRING;
|
|
|
|
extern const int CANNOT_PARSE_DATE;
|
|
|
|
extern const int CANNOT_PARSE_DATETIME;
|
|
|
|
extern const int CANNOT_READ_ARRAY_FROM_TEXT;
|
2020-11-03 20:32:18 +00:00
|
|
|
extern const int CANNOT_READ_ALL_DATA;
|
2018-05-24 01:02:16 +00:00
|
|
|
extern const int CANNOT_PARSE_NUMBER;
|
|
|
|
extern const int CANNOT_PARSE_UUID;
|
|
|
|
extern const int TOO_LARGE_STRING_SIZE;
|
2019-02-19 18:41:18 +00:00
|
|
|
extern const int INCORRECT_NUMBER_OF_COLUMNS;
|
2020-04-21 20:41:52 +00:00
|
|
|
extern const int ARGUMENT_OUT_OF_BOUND;
|
|
|
|
extern const int INCORRECT_DATA;
|
2018-05-24 01:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-07 22:39:18 +00:00
|
|
|
bool isParseError(int code)
|
2018-05-24 01:02:16 +00:00
|
|
|
{
|
|
|
|
return code == ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED
|
|
|
|
|| code == ErrorCodes::CANNOT_PARSE_QUOTED_STRING
|
|
|
|
|| code == ErrorCodes::CANNOT_PARSE_DATE
|
|
|
|
|| code == ErrorCodes::CANNOT_PARSE_DATETIME
|
|
|
|
|| code == ErrorCodes::CANNOT_READ_ARRAY_FROM_TEXT
|
|
|
|
|| code == ErrorCodes::CANNOT_PARSE_NUMBER
|
|
|
|
|| code == ErrorCodes::CANNOT_PARSE_UUID
|
2020-11-03 20:32:18 +00:00
|
|
|
|| code == ErrorCodes::CANNOT_READ_ALL_DATA
|
2020-04-21 20:41:52 +00:00
|
|
|
|| code == ErrorCodes::TOO_LARGE_STRING_SIZE
|
|
|
|
|| code == ErrorCodes::ARGUMENT_OUT_OF_BOUND /// For Decimals
|
|
|
|
|| code == ErrorCodes::INCORRECT_DATA; /// For some ReadHelpers
|
2018-05-24 01:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-18 16:36:07 +00:00
|
|
|
Chunk IRowInputFormat::generate()
|
2018-05-24 01:02:16 +00:00
|
|
|
{
|
|
|
|
if (total_rows == 0)
|
|
|
|
readPrefix();
|
|
|
|
|
|
|
|
const Block & header = getPort().getHeader();
|
|
|
|
|
|
|
|
size_t num_columns = header.columns();
|
|
|
|
MutableColumns columns = header.cloneEmptyColumns();
|
|
|
|
|
2019-07-30 18:48:40 +00:00
|
|
|
///auto chunk_missing_values = std::make_unique<ChunkMissingValues>();
|
2019-10-16 19:27:33 +00:00
|
|
|
block_missing_values.clear();
|
2019-02-19 18:41:18 +00:00
|
|
|
|
2020-12-17 13:17:39 +00:00
|
|
|
size_t num_rows = 0;
|
|
|
|
|
2018-05-24 01:02:16 +00:00
|
|
|
try
|
|
|
|
{
|
2020-04-26 00:33:36 +00:00
|
|
|
RowReadExtension info;
|
2019-09-20 12:12:32 +00:00
|
|
|
for (size_t rows = 0; rows < params.max_block_size; ++rows)
|
2018-05-24 01:02:16 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
++total_rows;
|
2019-02-19 18:41:18 +00:00
|
|
|
|
2020-04-26 00:33:36 +00:00
|
|
|
info.read_columns.clear();
|
2019-02-19 18:41:18 +00:00
|
|
|
if (!readRow(columns, info))
|
2018-05-24 01:02:16 +00:00
|
|
|
break;
|
2019-02-19 18:41:18 +00:00
|
|
|
|
|
|
|
for (size_t column_idx = 0; column_idx < info.read_columns.size(); ++column_idx)
|
|
|
|
{
|
|
|
|
if (!info.read_columns[column_idx])
|
|
|
|
{
|
|
|
|
size_t column_size = columns[column_idx]->size();
|
|
|
|
if (column_size == 0)
|
|
|
|
throw Exception("Unexpected empty column", ErrorCodes::INCORRECT_NUMBER_OF_COLUMNS);
|
2019-07-30 18:48:40 +00:00
|
|
|
block_missing_values.setBit(column_idx, column_size - 1);
|
2019-02-19 18:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-18 09:40:56 +00:00
|
|
|
|
|
|
|
++num_rows;
|
2018-05-24 01:02:16 +00:00
|
|
|
}
|
|
|
|
catch (Exception & e)
|
|
|
|
{
|
|
|
|
/// Logic for possible skipping of errors.
|
|
|
|
|
|
|
|
if (!isParseError(e.code()))
|
|
|
|
throw;
|
|
|
|
|
|
|
|
if (params.allow_errors_num == 0 && params.allow_errors_ratio == 0)
|
|
|
|
throw;
|
|
|
|
|
|
|
|
++num_errors;
|
|
|
|
Float64 current_error_ratio = static_cast<Float64>(num_errors) / total_rows;
|
|
|
|
|
|
|
|
if (num_errors > params.allow_errors_num
|
|
|
|
&& current_error_ratio > params.allow_errors_ratio)
|
|
|
|
{
|
|
|
|
e.addMessage("(Already have " + toString(num_errors) + " errors"
|
|
|
|
" out of " + toString(total_rows) + " rows"
|
|
|
|
", which is " + toString(current_error_ratio) + " of all rows)");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!allowSyncAfterError())
|
|
|
|
{
|
|
|
|
e.addMessage("(Input format doesn't allow to skip errors)");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
syncAfterError();
|
|
|
|
|
2020-12-17 13:17:39 +00:00
|
|
|
/// Truncate all columns in block to initial size (remove values, that was appended to only part of columns).
|
2018-05-24 01:02:16 +00:00
|
|
|
|
|
|
|
for (size_t column_idx = 0; column_idx < num_columns; ++column_idx)
|
|
|
|
{
|
|
|
|
auto & column = columns[column_idx];
|
2020-12-17 13:17:39 +00:00
|
|
|
if (column->size() > num_rows)
|
|
|
|
column->popBack(column->size() - num_rows);
|
2020-12-17 06:23:25 +00:00
|
|
|
}
|
2018-05-24 01:02:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception & e)
|
|
|
|
{
|
|
|
|
if (!isParseError(e.code()))
|
|
|
|
throw;
|
|
|
|
|
|
|
|
String verbose_diagnostic;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
verbose_diagnostic = getDiagnosticInfo();
|
|
|
|
}
|
2020-04-21 20:41:52 +00:00
|
|
|
catch (const Exception & exception)
|
|
|
|
{
|
|
|
|
verbose_diagnostic = "Cannot get verbose diagnostic: " + exception.message();
|
|
|
|
}
|
2018-05-24 01:02:16 +00:00
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
/// Error while trying to obtain verbose diagnostic. Ok to ignore.
|
|
|
|
}
|
|
|
|
|
|
|
|
e.addMessage("(at row " + toString(total_rows) + ")\n" + verbose_diagnostic);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (columns.empty() || columns[0]->empty())
|
|
|
|
{
|
2020-04-25 12:10:53 +00:00
|
|
|
if (num_errors && (params.allow_errors_num > 0 || params.allow_errors_ratio > 0))
|
2019-08-01 14:25:41 +00:00
|
|
|
{
|
2020-05-30 21:57:37 +00:00
|
|
|
Poco::Logger * log = &Poco::Logger::get("IRowInputFormat");
|
2020-05-23 22:24:01 +00:00
|
|
|
LOG_TRACE(log, "Skipped {} rows with errors while reading the input stream", num_errors);
|
2019-08-01 14:25:41 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 01:02:16 +00:00
|
|
|
readSuffix();
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2019-12-03 13:43:40 +00:00
|
|
|
Chunk chunk(std::move(columns), num_rows);
|
2019-07-30 18:48:40 +00:00
|
|
|
//chunk.setChunkInfo(std::move(chunk_missing_values));
|
2019-02-18 16:36:07 +00:00
|
|
|
return chunk;
|
2018-05-24 01:02:16 +00:00
|
|
|
}
|
|
|
|
|
2019-02-19 18:41:18 +00:00
|
|
|
void IRowInputFormat::syncAfterError()
|
|
|
|
{
|
|
|
|
throw Exception("Method syncAfterError is not implemented for input format", ErrorCodes::NOT_IMPLEMENTED);
|
|
|
|
}
|
|
|
|
|
2019-11-26 23:46:19 +00:00
|
|
|
void IRowInputFormat::resetParser()
|
|
|
|
{
|
|
|
|
IInputFormat::resetParser();
|
|
|
|
total_rows = 0;
|
|
|
|
num_errors = 0;
|
|
|
|
block_missing_values.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-24 01:02:16 +00:00
|
|
|
}
|